T O P I C R E V I E W |
bf1978 |
Posted - 05/18/2005 : 6:23:41 PM Hi, how is it possible to find out all the information about a dataset using Origin C? I want to give a dataset name and I would like to get the worksheet name, the other datasets in the worksheet etc.
Thanks, bf |
1 L A T E S T R E P L I E S (Newest First) |
Mike Buess |
Posted - 05/18/2005 : 9:05:58 PM Dataset name...
string sName = ds.GetName();
Worksheet and all column names...
Worksheet wks = Project.ActiveLayer(); out_str(wks.GetPage().GetName()); foreach(Column col in wks.Columns) { out_str(col.GetName()); }
Mike Buess Origin WebRing Member |
|
|