chartarea.cpp

来自「写入WORD;动态画曲线;查看磁盘资源等。」· C++ 代码 · 共 173 行

CPP
173
字号
// 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 "chartarea.h"

// Dispatch interfaces referenced by this interface
#include "border.h"
#include "location.h"
#include "interior.h"
#include "plotarea.h"
#include "bar.h"
#include "pie.h"
#include "markercollection.h"
#include "axiscollection.h"
#include "view3d.h"
#include "hiloopenclose.h"
#include "candle.h"
#include "polar.h"
#include "bubble.h"
#include "alarmzonecollection.h"


/////////////////////////////////////////////////////////////////////////////
// CChartArea properties

BOOL CChartArea::GetIsHorizontal()
{
	BOOL result;
	GetProperty(0x1, VT_BOOL, (void*)&result);
	return result;
}

void CChartArea::SetIsHorizontal(BOOL propVal)
{
	SetProperty(0x1, VT_BOOL, propVal);
}

CBorder CChartArea::GetBorder()
{
	LPDISPATCH pDispatch;
	GetProperty(0x2, VT_DISPATCH, (void*)&pDispatch);
	return CBorder(pDispatch);
}

CLocation CChartArea::GetLocation()
{
	LPDISPATCH pDispatch;
	GetProperty(0x3, VT_DISPATCH, (void*)&pDispatch);
	return CLocation(pDispatch);
}

CInterior CChartArea::GetInterior()
{
	LPDISPATCH pDispatch;
	GetProperty(0x4, VT_DISPATCH, (void*)&pDispatch);
	return CInterior(pDispatch);
}

CPlotArea CChartArea::GetPlotArea()
{
	LPDISPATCH pDispatch;
	GetProperty(0x5, VT_DISPATCH, (void*)&pDispatch);
	return CPlotArea(pDispatch);
}

CBar CChartArea::GetBar()
{
	LPDISPATCH pDispatch;
	GetProperty(0x6, VT_DISPATCH, (void*)&pDispatch);
	return CBar(pDispatch);
}

CPie CChartArea::GetPie()
{
	LPDISPATCH pDispatch;
	GetProperty(0x7, VT_DISPATCH, (void*)&pDispatch);
	return CPie(pDispatch);
}

CMarkerCollection CChartArea::GetMarkers()
{
	LPDISPATCH pDispatch;
	GetProperty(0x8, VT_DISPATCH, (void*)&pDispatch);
	return CMarkerCollection(pDispatch);
}

CAxisCollection CChartArea::GetAxes()
{
	LPDISPATCH pDispatch;
	GetProperty(0x9, VT_DISPATCH, (void*)&pDispatch);
	return CAxisCollection(pDispatch);
}

CView3D CChartArea::GetView3D()
{
	LPDISPATCH pDispatch;
	GetProperty(0xa, VT_DISPATCH, (void*)&pDispatch);
	return CView3D(pDispatch);
}

LPDISPATCH CChartArea::GetParent()
{
	LPDISPATCH result;
	GetProperty(0xb, VT_DISPATCH, (void*)&result);
	return result;
}

CHiLoOpenClose CChartArea::GetHiLoOpenClose()
{
	LPDISPATCH pDispatch;
	GetProperty(0xc, VT_DISPATCH, (void*)&pDispatch);
	return CHiLoOpenClose(pDispatch);
}

CCandle CChartArea::GetCandle()
{
	LPDISPATCH pDispatch;
	GetProperty(0xd, VT_DISPATCH, (void*)&pDispatch);
	return CCandle(pDispatch);
}

long CChartArea::GetAngleUnit()
{
	long result;
	GetProperty(0xe, VT_I4, (void*)&result);
	return result;
}

void CChartArea::SetAngleUnit(long propVal)
{
	SetProperty(0xe, VT_I4, propVal);
}

CPolar CChartArea::GetPolar()
{
	LPDISPATCH pDispatch;
	GetProperty(0xf, VT_DISPATCH, (void*)&pDispatch);
	return CPolar(pDispatch);
}

BOOL CChartArea::GetIsShowingOutlines()
{
	BOOL result;
	GetProperty(0x10, VT_BOOL, (void*)&result);
	return result;
}

void CChartArea::SetIsShowingOutlines(BOOL propVal)
{
	SetProperty(0x10, VT_BOOL, propVal);
}

CBubble CChartArea::GetBubble()
{
	LPDISPATCH pDispatch;
	GetProperty(0x11, VT_DISPATCH, (void*)&pDispatch);
	return CBubble(pDispatch);
}

CAlarmZoneCollection CChartArea::GetAlarmZones()
{
	LPDISPATCH pDispatch;
	GetProperty(0x12, VT_DISPATCH, (void*)&pDispatch);
	return CAlarmZoneCollection(pDispatch);
}

/////////////////////////////////////////////////////////////////////////////
// CChartArea operations

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?