亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? mapx.cpp

?? 一個簡單地基于VC 讀取串口讀取gps 數據
?? CPP
?? 第 1 頁 / 共 5 頁
字號:
}

void CMapXLegend::SetTitleStyle(LPDISPATCH propVal)
{
	SetProperty(0x3, VT_DISPATCH, propVal);
}

CMapXStyle CMapXLegend::GetSubTitleStyle()
{
	LPDISPATCH result;
	GetProperty(0x4, VT_DISPATCH, (void*)&result);
	return CMapXStyle(result);
}

void CMapXLegend::SetSubTitleStyle(LPDISPATCH propVal)
{
	SetProperty(0x4, VT_DISPATCH, propVal);
}

CMapXStyle CMapXLegend::GetCompactTitleStyle()
{
	LPDISPATCH result;
	GetProperty(0x5, VT_DISPATCH, (void*)&result);
	return CMapXStyle(result);
}

void CMapXLegend::SetCompactTitleStyle(LPDISPATCH propVal)
{
	SetProperty(0x5, VT_DISPATCH, propVal);
}

CMapXStyle CMapXLegend::GetBodyTextStyle()
{
	LPDISPATCH result;
	GetProperty(0x6, VT_DISPATCH, (void*)&result);
	return CMapXStyle(result);
}

void CMapXLegend::SetBodyTextStyle(LPDISPATCH propVal)
{
	SetProperty(0x6, VT_DISPATCH, propVal);
}

CMapXLegendTexts CMapXLegend::GetLegendTexts()
{
	LPDISPATCH result;
	GetProperty(0x7, VT_DISPATCH, (void*)&result);
	return CMapXLegendTexts(result);
}

BOOL CMapXLegend::GetCurrencyFormat()
{
	BOOL result;
	GetProperty(0x8, VT_BOOL, (void*)&result);
	return result;
}

void CMapXLegend::SetCurrencyFormat(BOOL propVal)
{
	SetProperty(0x8, VT_BOOL, propVal);
}

CString CMapXLegend::GetTitle()
{
	CString result;
	GetProperty(0x9, VT_BSTR, (void*)&result);
	return result;
}

void CMapXLegend::SetTitle(LPCTSTR propVal)
{
	SetProperty(0x9, VT_BSTR, propVal);
}

CString CMapXLegend::GetSubTitle()
{
	CString result;
	GetProperty(0xa, VT_BSTR, (void*)&result);
	return result;
}

void CMapXLegend::SetSubTitle(LPCTSTR propVal)
{
	SetProperty(0xa, VT_BSTR, propVal);
}

CString CMapXLegend::GetCompactTitle()
{
	CString result;
	GetProperty(0xb, VT_BSTR, (void*)&result);
	return result;
}

void CMapXLegend::SetCompactTitle(LPCTSTR propVal)
{
	SetProperty(0xb, VT_BSTR, propVal);
}

double CMapXLegend::GetLeft()
{
	double result;
	GetProperty(0xc, VT_R8, (void*)&result);
	return result;
}

void CMapXLegend::SetLeft(double propVal)
{
	SetProperty(0xc, VT_R8, propVal);
}

double CMapXLegend::GetTop()
{
	double result;
	GetProperty(0xd, VT_R8, (void*)&result);
	return result;
}

void CMapXLegend::SetTop(double propVal)
{
	SetProperty(0xd, VT_R8, propVal);
}

double CMapXLegend::GetWidth()
{
	double result;
	GetProperty(0xe, VT_R8, (void*)&result);
	return result;
}

double CMapXLegend::GetHeight()
{
	double result;
	GetProperty(0xf, VT_R8, (void*)&result);
	return result;
}

BOOL CMapXLegend::GetShowEmptyRanges()
{
	BOOL result;
	GetProperty(0x11, VT_BOOL, (void*)&result);
	return result;
}

void CMapXLegend::SetShowEmptyRanges(BOOL propVal)
{
	SetProperty(0x11, VT_BOOL, propVal);
}

BOOL CMapXLegend::GetShowCount()
{
	BOOL result;
	GetProperty(0x13, VT_BOOL, (void*)&result);
	return result;
}

void CMapXLegend::SetShowCount(BOOL propVal)
{
	SetProperty(0x13, VT_BOOL, propVal);
}

double CMapXLegend::GetPaperHeight()
{
	double result;
	GetProperty(0x15, VT_R8, (void*)&result);
	return result;
}

double CMapXLegend::GetPaperWidth()
{
	double result;
	GetProperty(0x16, VT_R8, (void*)&result);
	return result;
}

/////////////////////////////////////////////////////////////////////////////
// CMapXLegend operations

BOOL CMapXLegend::LegendDlg(const VARIANT& HelpFile, const VARIANT& HelpID)
{
	BOOL bRetVal;
	static BYTE parms[] =
		VTS_VARIANT VTS_VARIANT;
	InvokeHelper(0x10, DISPATCH_METHOD, VT_BOOL, (void*)&bRetVal, parms,
		&HelpFile, &HelpID);
	return(bRetVal);
}

void CMapXLegend::ExportLegend(LPCTSTR Destination, short Format)
{
	static BYTE parms[] =
		VTS_BSTR VTS_I2;
	InvokeHelper(0x12, DISPATCH_METHOD, VT_EMPTY, NULL, parms,
		 Destination, Format);
}

void CMapXLegend::PrintLegend(long hDC, long X, long Y, long W, long H)
{
	static BYTE parms[] =
		VTS_I4 VTS_I4 VTS_I4 VTS_I4 VTS_I4;
	InvokeHelper(0x14, DISPATCH_METHOD, VT_EMPTY, NULL, parms,
		 hDC, X, Y, W, H);
}


/////////////////////////////////////////////////////////////////////////////
// CMapXAnnotations properties

LPENUMVARIANT CMapXAnnotations::GetEnumerator()
{
	LPENUMVARIANT pEnumVariant = 0;
	LPUNKNOWN pUnknown = 0;
	GetProperty(0xfffffffc, VT_UNKNOWN, (void*)&pUnknown);	
	if(pUnknown)
	{
		pUnknown->QueryInterface(IID_IEnumVARIANT, (void**)&pEnumVariant);
		pUnknown->Release();
	}	
	return pEnumVariant;
}

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

void CMapXAnnotations::SetEditable(BOOL propVal)
{
	SetProperty(0x1, VT_BOOL, propVal);
}

long CMapXAnnotations::GetCount()
{
	long result;
	GetProperty(0x2, VT_I4, (void*)&result);
	return result;
}

/////////////////////////////////////////////////////////////////////////////
// CMapXAnnotations operations

CMapXAnnotation CMapXAnnotations::AddSymbol(double X, double Y)
{
	LPDISPATCH result;
	static BYTE parms[] =
		VTS_R8 VTS_R8;
	InvokeHelper(0x3, DISPATCH_METHOD, VT_DISPATCH, (void*)&result, parms,
		X, Y);
	return CMapXAnnotation(result);
}

CMapXAnnotation CMapXAnnotations::Item(const VARIANT& Index)
{
	LPDISPATCH result;
	static BYTE parms[] =
		VTS_VARIANT;
	InvokeHelper(0x4, DISPATCH_METHOD, VT_DISPATCH, (void*)&result, parms,
		&Index);
	return CMapXAnnotation(result);
}

void CMapXAnnotations::Remove(const VARIANT& Index)
{
	static BYTE parms[] =
		VTS_VARIANT;
	InvokeHelper(0x5, DISPATCH_METHOD, VT_EMPTY, NULL, parms,
		 &Index);
}

CMapXAnnotation CMapXAnnotations::AddText(LPCTSTR Text, double X, double Y, const VARIANT& Position)
{
	LPDISPATCH result;
	static BYTE parms[] =
		VTS_BSTR VTS_R8 VTS_R8 VTS_VARIANT;
	InvokeHelper(0x6, DISPATCH_METHOD, VT_DISPATCH, (void*)&result, parms,
		Text, X, Y, &Position);
	return CMapXAnnotation(result);
}

void CMapXAnnotations::RemoveAll()
{
	InvokeHelper(0x7, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
}

CMapXAnnotation CMapXAnnotations::ActiveAnnotation()
{
	LPDISPATCH result;
	GetProperty(0x8, VT_DISPATCH, (void*)&result);
	return CMapXAnnotation(result);
}


/////////////////////////////////////////////////////////////////////////////
// CMapXThemeProperties properties

short CMapXThemeProperties::GetDistMethod()
{
	short result;
	GetProperty(0x1, VT_I2, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetDistMethod(short propVal)
{
	SetProperty(0x1, VT_I2, propVal);
}

short CMapXThemeProperties::GetNumRanges()
{
	short result;
	GetProperty(0x2, VT_I2, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetNumRanges(short propVal)
{
	SetProperty(0x2, VT_I2, propVal);
}

CMapXRangeCategories CMapXThemeProperties::GetRangeCategories()
{
	LPDISPATCH result;
	GetProperty(0x3, VT_DISPATCH, (void*)&result);
	return CMapXRangeCategories(result);
}

short CMapXThemeProperties::GetDotSize()
{
	short result;
	GetProperty(0x5, VT_I2, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetDotSize(short propVal)
{
	SetProperty(0x5, VT_I2, propVal);
}

BOOL CMapXThemeProperties::GetGraduated()
{
	BOOL result;
	GetProperty(0x6, VT_BOOL, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetGraduated(BOOL propVal)
{
	SetProperty(0x6, VT_BOOL, propVal);
}

CMapXMultivarCategories CMapXThemeProperties::GetMultivarCategories()
{
	LPDISPATCH result;
	GetProperty(0x7, VT_DISPATCH, (void*)&result);
	return CMapXMultivarCategories(result);
}

BOOL CMapXThemeProperties::GetIndependent()
{
	BOOL result;
	GetProperty(0x8, VT_BOOL, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetIndependent(BOOL propVal)
{
	SetProperty(0x8, VT_BOOL, propVal);
}

CMapXIndividualValueCategories CMapXThemeProperties::GetIndividualValueCategories()
{
	LPDISPATCH result;
	GetProperty(0x4, VT_DISPATCH, (void*)&result);
	return CMapXIndividualValueCategories(result);
}

double CMapXThemeProperties::GetValuePerDot()
{
	double result;
	GetProperty(0x9, VT_R8, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetValuePerDot(double propVal)
{
	SetProperty(0x9, VT_R8, propVal);
}

double CMapXThemeProperties::GetDataValue()
{
	double result;
	GetProperty(0xa, VT_R8, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetDataValue(double propVal)
{
	SetProperty(0xa, VT_R8, propVal);
}

double CMapXThemeProperties::GetSize()
{
	double result;
	GetProperty(0xb, VT_R8, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetSize(double propVal)
{
	SetProperty(0xb, VT_R8, propVal);
}

double CMapXThemeProperties::GetWidth()
{
	double result;
	GetProperty(0xc, VT_R8, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetWidth(double propVal)
{
	SetProperty(0xc, VT_R8, propVal);
}

CMapXStyle CMapXThemeProperties::GetSymbolStyle()
{
	LPDISPATCH result;
	GetProperty(0xd, VT_DISPATCH, (void*)&result);
	return CMapXStyle(result);
}

void CMapXThemeProperties::SetSymbolStyle(LPDISPATCH propVal)
{
	SetProperty(0xd, VT_DISPATCH, propVal);
}

short CMapXThemeProperties::GetSpreadBy()
{
	short result;
	GetProperty(0xe, VT_I2, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetSpreadBy(short propVal)
{
	SetProperty(0xe, VT_I2, propVal);
}

BOOL CMapXThemeProperties::GetAllowEmptyRanges()
{
	BOOL result;
	GetProperty(0xf, VT_BOOL, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetAllowEmptyRanges(BOOL propVal)
{
	SetProperty(0xf, VT_BOOL, propVal);
}

unsigned long CMapXThemeProperties::GetDotColor()
{
	unsigned long result;
	GetProperty(0x10, VT_I4, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetDotColor(unsigned long propVal)
{
	SetProperty(0x10, VT_I4, propVal);
}

BOOL CMapXThemeProperties::GetPieClockwise()
{
	BOOL result;
	GetProperty(0x11, VT_BOOL, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetPieClockwise(BOOL propVal)
{
	SetProperty(0x11, VT_BOOL, propVal);
}

BOOL CMapXThemeProperties::GetPieHalfPies()
{
	BOOL result;
	GetProperty(0x12, VT_BOOL, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetPieHalfPies(BOOL propVal)
{
	SetProperty(0x12, VT_BOOL, propVal);
}

short CMapXThemeProperties::GetPieStartAngle()
{
	short result;
	GetProperty(0x13, VT_I2, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetPieStartAngle(short propVal)
{
	SetProperty(0x13, VT_I2, propVal);
}

BOOL CMapXThemeProperties::GetBarStacked()
{
	BOOL result;
	GetProperty(0x14, VT_BOOL, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetBarStacked(BOOL propVal)
{
	SetProperty(0x14, VT_BOOL, propVal);
}

CMapXStyle CMapXThemeProperties::GetNegativeSymbolStyle()
{
	LPDISPATCH result;
	GetProperty(0x15, VT_DISPATCH, (void*)&result);
	return CMapXStyle(result);
}

void CMapXThemeProperties::SetNegativeSymbolStyle(LPDISPATCH propVal)
{
	SetProperty(0x15, VT_DISPATCH, propVal);
}

BOOL CMapXThemeProperties::GetShowNegativeValues()
{
	BOOL result;
	GetProperty(0x16, VT_BOOL, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetShowNegativeValues(BOOL propVal)
{
	SetProperty(0x16, VT_BOOL, propVal);
}

short CMapXThemeProperties::GetGraduateSizeBy()
{
	short result;
	GetProperty(0x17, VT_I2, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetGraduateSizeBy(short propVal)
{
	SetProperty(0x17, VT_I2, propVal);
}

CMapXStyle CMapXThemeProperties::GetBorderStyle()
{
	LPDISPATCH result;
	GetProperty(0x18, VT_DISPATCH, (void*)&result);
	return CMapXStyle(result);
}

void CMapXThemeProperties::SetBorderStyle(LPDISPATCH propVal)
{
	SetProperty(0x18, VT_DISPATCH, propVal);
}

double CMapXThemeProperties::GetBarWidth()
{
	double result;
	GetProperty(0x19, VT_R8, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetBarWidth(double propVal)
{
	SetProperty(0x19, VT_R8, propVal);
}

BOOL CMapXThemeProperties::GetBarIndependentScale()
{
	BOOL result;
	GetProperty(0x1a, VT_BOOL, (void*)&result);
	return result;
}

void CMapXThemeProperties::SetBarIndependentScale(BOOL propVal)
{
	SetProperty(0x1a, VT_BOOL, propVal);
}

CMapXStyle CMapXThemeProperties::GetPositiveSymbolStyle()
{
	LPDISPATCH result;
	GetProperty(0x1b, VT_DISPATCH, (void*)&result);
	return CMapXStyle(result);
}

void CMapXThemeProperties::SetPositiveSymbolStyle(LPDISPATCH propVal)
{

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品综合在线| 欧美一区二区视频在线观看 | 欧美一区二区女人| av电影天堂一区二区在线| 久久综合久久综合亚洲| 日韩中文字幕亚洲一区二区va在线| eeuss鲁片一区二区三区在线观看| 日韩电影网1区2区| 精品美女在线观看| 国产一区二区h| 久久婷婷一区二区三区| 在线播放91灌醉迷j高跟美女 | 麻豆成人久久精品二区三区红 | 中文字幕va一区二区三区| 国产91精品一区二区麻豆网站 | 精品视频在线免费观看| 亚洲国产综合人成综合网站| 99re这里只有精品视频首页| 午夜精品爽啪视频| 久久久久久久综合狠狠综合| 高清不卡一区二区在线| 国产精品自在欧美一区| 亚洲综合偷拍欧美一区色| 欧美一区二区三区在线电影| 欧美久久久一区| 91精品国产一区二区三区蜜臀| 7777精品伊人久久久大香线蕉| 欧美理论片在线| 欧美一区二视频| 欧美精品一区二区在线播放| 91女神在线视频| 麻豆91小视频| 国产精品资源在线观看| 国产精品1区2区3区| 成人理论电影网| 日韩av电影一区| 麻豆一区二区在线| 国产黄人亚洲片| 美国十次了思思久久精品导航| 免费观看在线综合| 亚洲黄色小视频| 亚洲va韩国va欧美va精品| 中文字幕佐山爱一区二区免费| 3d动漫精品啪啪1区2区免费| 91麻豆精品国产91久久久使用方法| 欧美疯狂性受xxxxx喷水图片| 欧美电视剧免费全集观看| 欧美手机在线视频| 一本色道a无线码一区v| 国模无码大尺度一区二区三区| 亚洲午夜三级在线| 麻豆成人久久精品二区三区小说| 国产一本一道久久香蕉| 一本久道久久综合中文字幕| 欧美日本一区二区三区四区| 97精品久久久午夜一区二区三区 | 国产精品羞羞答答xxdd| 不卡视频在线观看| 国产激情视频一区二区三区欧美 | 日本v片在线高清不卡在线观看| 狠狠色丁香久久婷婷综| 91老司机福利 在线| 26uuu国产日韩综合| 亚洲一区二区中文在线| 国产在线播放一区| 欧美天堂亚洲电影院在线播放| 国产精品毛片高清在线完整版| 欧美一区二区黄| 中文字幕制服丝袜一区二区三区 | 在线视频欧美精品| 在线观看日韩av先锋影音电影院| 欧美一区二区在线不卡| 亚洲精品一二三四区| 国内精品第一页| 欧美一级免费观看| 欧美日韩在线播放三区| 国产视频视频一区| 亚洲欧洲日本在线| 亚洲综合视频在线观看| 国产一区二区伦理片| 欧美日韩视频第一区| 最近日韩中文字幕| 成人国产视频在线观看| 久久精品亚洲精品国产欧美kt∨| 日韩不卡在线观看日韩不卡视频| 91黄色激情网站| 欧美一区二区三区成人| 亚洲免费看黄网站| 五月天激情小说综合| 91在线看国产| 中文字幕在线一区| 丁香天五香天堂综合| 久久人人爽爽爽人久久久| 毛片av一区二区三区| 欧美一区二区三区免费观看视频| 亚洲成av人片一区二区梦乃| 欧美日韩aaaaa| 日韩影院在线观看| 欧美日韩三级一区二区| 亚洲观看高清完整版在线观看| 一本高清dvd不卡在线观看| 亚洲男人电影天堂| 日韩一卡二卡三卡国产欧美| 亚洲国产精品视频| 欧美色图12p| 日韩在线一区二区三区| 这里是久久伊人| 麻豆久久一区二区| 欧美一卡2卡三卡4卡5免费| 日韩成人av影视| 久久综合久久综合久久| 国产99久久久国产精品潘金网站| 亚洲国产高清在线| 91首页免费视频| 亚洲一区二区三区国产| 日韩一级免费一区| 国产主播一区二区| 国产精品乱码久久久久久| 91蝌蚪porny| 亚洲v精品v日韩v欧美v专区 | 91美女视频网站| 亚洲精品日韩专区silk| 欧美少妇一区二区| 另类成人小视频在线| 色老头久久综合| 亚洲777理论| 久久只精品国产| 99re热这里只有精品免费视频| 亚洲午夜精品网| 精品日韩99亚洲| 99精品在线免费| 午夜精品123| 久久亚洲综合色一区二区三区| 99精品黄色片免费大全| 日韩avvvv在线播放| 国产日本亚洲高清| 毛片av一区二区三区| 日本一区二区三区免费乱视频| 91论坛在线播放| 黑人巨大精品欧美黑白配亚洲| 亚洲三级在线免费| 精品欧美久久久| 在线观看免费一区| 福利一区二区在线| 日韩国产一二三区| 综合久久久久综合| 精品国产三级a在线观看| 欧美午夜精品免费| 成人午夜碰碰视频| 精品一区二区在线看| 欧美大尺度电影在线| 91啪亚洲精品| 成人午夜电影久久影院| 免费成人av资源网| 一区二区三区资源| 欧美人妇做爰xxxⅹ性高电影| 丁香婷婷综合激情五月色| 欧美a级一区二区| 亚洲黄色免费电影| 国产精品久久久久久久浪潮网站| 日韩一区二区三区观看| 欧美男男青年gay1069videost | 在线观看日韩高清av| 岛国精品在线观看| 伦理电影国产精品| 日韩精品国产精品| 五月天欧美精品| 亚洲一区二区不卡免费| 中文字幕在线观看不卡| 国产精品黄色在线观看| 久久色在线观看| 精品粉嫩aⅴ一区二区三区四区| 欧美人伦禁忌dvd放荡欲情| 99久久免费精品高清特色大片| 久久精品国产澳门| 青青国产91久久久久久| 亚洲免费三区一区二区| 亚洲区小说区图片区qvod| 中文字幕中文字幕中文字幕亚洲无线| 久久久精品黄色| 国产午夜精品一区二区三区视频| 2023国产精品自拍| 国产网站一区二区| 精品久久免费看| 久久久不卡影院| 中文字幕精品综合| 国产精品每日更新| 亚洲免费观看高清在线观看| 亚洲欧美日韩久久精品| 又紧又大又爽精品一区二区| 亚洲电影在线免费观看| 天天综合网天天综合色| 麻豆精品久久精品色综合| 久久精品噜噜噜成人av农村| 狠狠色丁香久久婷婷综| 成人国产精品免费观看视频| 色94色欧美sute亚洲13| 欧美色倩网站大全免费| 欧美日韩国产经典色站一区二区三区| 欧美日韩和欧美的一区二区|