84 lines
1.9 KiB
C
84 lines
1.9 KiB
C
|
// CVcAxis.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
|
|||
|
|
|||
|
/////////////////////////////////////////////////////////////////////////////
|
|||
|
// CVcAxis
|
|||
|
|
|||
|
class CVcAxis : public COleDispatchDriver
|
|||
|
{
|
|||
|
public:
|
|||
|
CVcAxis() {} // <20><><EFBFBD><EFBFBD> COleDispatchDriver Ĭ<>Ϲ<EFBFBD><CFB9>캯<EFBFBD><ECBAAF>
|
|||
|
CVcAxis(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
|
|||
|
CVcAxis(const CVcAxis& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>
|
|||
|
public:
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>
|
|||
|
public:
|
|||
|
|
|||
|
LPDISPATCH get_Pen()
|
|||
|
{
|
|||
|
LPDISPATCH result;
|
|||
|
InvokeHelper(0x1, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
short get_LabelLevelCount()
|
|||
|
{
|
|||
|
short result;
|
|||
|
InvokeHelper(0x2, DISPATCH_PROPERTYGET, VT_I2, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
LPDISPATCH get_CategoryScale()
|
|||
|
{
|
|||
|
LPDISPATCH result;
|
|||
|
InvokeHelper(0x3, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
LPDISPATCH get_AxisGrid()
|
|||
|
{
|
|||
|
LPDISPATCH result;
|
|||
|
InvokeHelper(0x5, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
LPDISPATCH get_Intersection()
|
|||
|
{
|
|||
|
LPDISPATCH result;
|
|||
|
InvokeHelper(0x6, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
LPDISPATCH get_Tick()
|
|||
|
{
|
|||
|
LPDISPATCH result;
|
|||
|
InvokeHelper(0x7, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
LPDISPATCH get_AxisScale()
|
|||
|
{
|
|||
|
LPDISPATCH result;
|
|||
|
InvokeHelper(0x8, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
LPDISPATCH get_ValueScale()
|
|||
|
{
|
|||
|
LPDISPATCH result;
|
|||
|
InvokeHelper(0x9, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
LPDISPATCH get_AxisTitle()
|
|||
|
{
|
|||
|
LPDISPATCH result;
|
|||
|
InvokeHelper(0xa, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
LPDISPATCH get_Labels()
|
|||
|
{
|
|||
|
LPDISPATCH result;
|
|||
|
InvokeHelper(0xb, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&result, nullptr);
|
|||
|
return result;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
};
|