// Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++ // NOTE: Do not modify the contents of this file. If this class is regenerated by // Microsoft Visual C++, your modifications will be overwritten. #include "stdafx.h" #include "gridlines.h" // Dispatch interfaces referenced by this interface #include "LineStyle.h" ///////////////////////////////////////////////////////////////////////////// // CGridLines properties LPDISPATCH CGridLines::GetParent() { LPDISPATCH result; GetProperty(0x1, VT_DISPATCH, (void*)&result); return result; } BOOL CGridLines::GetIsOnXYPlane() { BOOL result; GetProperty(0x2, VT_BOOL, (void*)&result); return result; } void CGridLines::SetIsOnXYPlane(BOOL propVal) { SetProperty(0x2, VT_BOOL, propVal); } BOOL CGridLines::GetIsOnXZPlane() { BOOL result; GetProperty(0x3, VT_BOOL, (void*)&result); return result; } void CGridLines::SetIsOnXZPlane(BOOL propVal) { SetProperty(0x3, VT_BOOL, propVal); } BOOL CGridLines::GetIsOnYZPlane() { BOOL result; GetProperty(0x4, VT_BOOL, (void*)&result); return result; } void CGridLines::SetIsOnYZPlane(BOOL propVal) { SetProperty(0x4, VT_BOOL, propVal); } CLineStyle CGridLines::GetStyle() { LPDISPATCH pDispatch; GetProperty(0x5, VT_DISPATCH, (void*)&pDispatch); return CLineStyle(pDispatch); } ///////////////////////////////////////////////////////////////////////////// // CGridLines operations