SmsManager/CVcIntersection.h

69 lines
1.6 KiB
C
Raw Normal View History

2025-01-14 10:46:18 +08:00
// CVcIntersection.h : <20><> Microsoft Visual C++ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ActiveX <20>ؼ<EFBFBD><D8BC><EFBFBD>װ<EFBFBD><D7B0><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
#pragma once
/////////////////////////////////////////////////////////////////////////////
// CVcIntersection
class CVcIntersection : public COleDispatchDriver
{
public:
CVcIntersection() {} // <20><><EFBFBD><EFBFBD> COleDispatchDriver Ĭ<>Ϲ<EFBFBD><CFB9><EFBFBD><ECBAAF>
CVcIntersection(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
CVcIntersection(const CVcIntersection& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
// <20><><EFBFBD><EFBFBD>
public:
// <20><><EFBFBD><EFBFBD>
public:
BOOL get_Auto()
{
BOOL result;
InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_Auto(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x1, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
double get_Point()
{
double result;
InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_R8, (void*)&result, nullptr);
return result;
}
void put_Point(double newValue)
{
static BYTE parms[] = VTS_R8 ;
InvokeHelper(0x2, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
long get_axisID()
{
long result;
InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, nullptr);
return result;
}
short get_Index()
{
short result;
InvokeHelper(0x4, DISPATCH_PROPERTYGET, VT_I2, (void*)&result, nullptr);
return result;
}
BOOL get_LabelsInsidePlot()
{
BOOL result;
InvokeHelper(0x5, DISPATCH_PROPERTYGET, VT_BOOL, (void*)&result, nullptr);
return result;
}
void put_LabelsInsidePlot(BOOL newValue)
{
static BYTE parms[] = VTS_BOOL ;
InvokeHelper(0x5, DISPATCH_PROPERTYPUT, VT_EMPTY, nullptr, parms, newValue);
}
};