You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.7 KiB
C++
64 lines
1.7 KiB
C++
// 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 "shapefilecategory.h"
|
|
|
|
// Dispatch interfaces referenced by this interface
|
|
#include "ShapeDrawingOptions.h"
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CShapefileCategory properties
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CShapefileCategory operations
|
|
|
|
CString CShapefileCategory::GetName()
|
|
{
|
|
CString result;
|
|
InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
|
|
return result;
|
|
}
|
|
|
|
void CShapefileCategory::SetName(LPCTSTR lpszNewValue)
|
|
{
|
|
static BYTE parms[] =
|
|
VTS_BSTR;
|
|
InvokeHelper(0x1, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
|
|
lpszNewValue);
|
|
}
|
|
|
|
CString CShapefileCategory::GetExpression()
|
|
{
|
|
CString result;
|
|
InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_BSTR, (void*)&result, NULL);
|
|
return result;
|
|
}
|
|
|
|
void CShapefileCategory::SetExpression(LPCTSTR lpszNewValue)
|
|
{
|
|
static BYTE parms[] =
|
|
VTS_BSTR;
|
|
InvokeHelper(0x2, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
|
|
lpszNewValue);
|
|
}
|
|
|
|
CShapeDrawingOptions CShapefileCategory::GetDrawingOptions()
|
|
{
|
|
LPDISPATCH pDispatch;
|
|
InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
|
|
return CShapeDrawingOptions(pDispatch);
|
|
}
|
|
|
|
void CShapefileCategory::SetDrawingOptions(LPDISPATCH newValue)
|
|
{
|
|
static BYTE parms[] =
|
|
VTS_DISPATCH;
|
|
InvokeHelper(0x3, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
|
|
newValue);
|
|
}
|