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.
86 lines
1.9 KiB
C++
86 lines
1.9 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 "chart.h"
|
|
|
|
// Dispatch interfaces referenced by this interface
|
|
#include "Extents.h"
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CChart properties
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CChart operations
|
|
|
|
double CChart::GetPositionX()
|
|
{
|
|
double result;
|
|
InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_R8, (void*)&result, NULL);
|
|
return result;
|
|
}
|
|
|
|
void CChart::SetPositionX(double newValue)
|
|
{
|
|
static BYTE parms[] =
|
|
VTS_R8;
|
|
InvokeHelper(0x1, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
|
|
newValue);
|
|
}
|
|
|
|
double CChart::GetPositionY()
|
|
{
|
|
double result;
|
|
InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_R8, (void*)&result, NULL);
|
|
return result;
|
|
}
|
|
|
|
void CChart::SetPositionY(double newValue)
|
|
{
|
|
static BYTE parms[] =
|
|
VTS_R8;
|
|
InvokeHelper(0x2, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
|
|
newValue);
|
|
}
|
|
|
|
BOOL CChart::GetVisible()
|
|
{
|
|
BOOL result;
|
|
InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
|
|
return result;
|
|
}
|
|
|
|
void CChart::SetVisible(BOOL bNewValue)
|
|
{
|
|
static BYTE parms[] =
|
|
VTS_BOOL;
|
|
InvokeHelper(0x3, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
|
|
bNewValue);
|
|
}
|
|
|
|
BOOL CChart::GetIsDrawn()
|
|
{
|
|
BOOL result;
|
|
InvokeHelper(0x4, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, NULL);
|
|
return result;
|
|
}
|
|
|
|
void CChart::SetIsDrawn(BOOL bNewValue)
|
|
{
|
|
static BYTE parms[] =
|
|
VTS_BOOL;
|
|
InvokeHelper(0x4, DISPATCH_PROPERTYPUT, VT_EMPTY, NULL, parms,
|
|
bNewValue);
|
|
}
|
|
|
|
CExtents CChart::GetScreenExtents()
|
|
{
|
|
LPDISPATCH pDispatch;
|
|
InvokeHelper(0x5, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, NULL);
|
|
return CExtents(pDispatch);
|
|
}
|