要求されたページは選択されたバージョンでは利用できない。
AbtDataSetManagement
This class is the central point for interacting with data set’s information.
注意:
This class and its associated methods are currently supported only by the C# harness.Workflow Implementation
In general, a basic workflow involves the following steps:
- Initialize a new AbtDataSetManagement object.
- Use methods of AbtDataSetManagement to create a new AbtDataSet and/or AbtDataRow object.
- Depending on your needs, apply various methods of
- AbtDataSet to continue processing the returned data set, or
- AbtDataRow to continue processing the returned data set row.
Example
Suppose that you’d like to get the total number of columns in a given dedicated data set.
Your snippet of code might resemble the following:
//Initialize AbtDataSetManagement object
AbtDataSetManagement mgn = new AbtDataSetManagement();
//Retrieve a data set, "Car Rental"
AbtDataSet dataset = mgn.GetDataSet("/Car Rental");
//Retrieve the total number of columns
int count = dataset.GetColumnCount();