【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。
2.2.4.48.3 XYRange::GetDescription
Contents
Description
This function doesn't support now. Please Use the fuction OriginObject::GetRangeString instead.
Syntax
BOOL GetDescription( string & str, int nIndex )
Parameters
- str
- [output]Description of nIndex-th XY data
- nIndex
- [input]the data index
Return
TRUE if success.
Examples
EX1
void XYRange_GetDescription_ex1() { //assume there exists an worksheet with at least two columns Worksheet wks = Project.ActiveLayer(); if ( wks ) { XYRange xyRange; xyRange.Add(wks, 0, "X"); xyRange.Add(wks, 1, "Y"); string strDescription; if ( xyRange.GetDescription(strDescription, 0) ) out_str(strDescription); } }
Remark
See Also
Header to Include
origin.h