DatasetObject
The DatasetObject class provides access to non numeric access to the datasets that are usually members of Column objects.
EX1
void DatasetObject_DatasetObject_Ex1() { DatasetObject dobj("Book1_A"); if(dobj) { dobj.Info.SYSTEM.PARAMETERS.TAG$ = "MySeries"; string str = dobj.Info.SYSTEM.PARAMETERS.TAG$; } }
origin.h
| Name | Brief | Example |
|---|---|---|
| DatasetObject | Default constructor for a DatasetObject. | Examples |
| GetDataObject | to access (read/write) the dataset in DatasetObject. | Examples |
| GetDatasetName | Get the dataset name from the DatasetObject. | Examples |
| GetElementTypes | Get the format type of each element from the mixed type DatasetObject. | Examples |
| GetLabel | Get the label from the DatasetObject. | Examples |
| GetMask | Get a copy of the mask and it's size contained in the DatasetObject. | Examples |
| GetNANUMRows | to get the row index containing the missing value. | |
| IsEvenSampling | Check if the dataset has even sampling and get the sampling information. | Examples |
| SetLabel | Set the label (RCLT_LONG_NAME, RCLT_UNIT, RCLT_COMMENT, .. ) from the DatasetObject. | Examples |
| SetMask | Set the mask of the DatasetObject. | Examples |
| Pattern | follow the repeat rules to generate one data series data in a Dataset Object. | Examples |
| PercentText | Scan dataset to return percent in text, 100 if all text and 0 if all numbers. | Examples |
| Uniform | Repeat the items in vsSource with random order to genereate a series data. | Examples |