| Library | Module | Frames | Expand |
| Function | CreateParam (Name as String, Value as IpfcParamValue) as IpfcParameter | |
| Adds the specified parameter to the database and returns it. | ||
| Function | CreateParamWithUnits (Name as String, Value as IpfcParamValue, Units as IpfcUnit) as IpfcParameter | |
| Adds the specified parameter to the database and initializes the handle. The parameter will be created with units. | ||
| Function | GetParam (Name as String) as IpfcParameter [optional] | |
| Retrieves the parameter specified by name. | ||
| Function | ListParams () as IpfcParameters [optional] | |
| Provides a list of parameters associated with the parameter owner. | ||
| Function | SelectParam () as IpfcParameter [optional] | |
| Enables a user to select parameters interactively from a list. | ||
| Function | SelectParameters (Options as IpfcParameterSelectionOptions [optional]) as IpfcParameters | |
| Enables a user to select parameters interactively from a list displayed based on the parameter selection options specified. | ||
| Function | CreateParam | (Name as String, Value as IpfcParamValue) as IpfcParameter |
|
Adds the specified parameter to the database and returns it. Exceptions thrown (but not limited to): IpfcXToolkitBadContext - The owner is nonexistent. IpfcXToolkitFound - The specified parameter already exists.
|
| Function | CreateParamWithUnits | (Name as String, Value as IpfcParamValue, Units as IpfcUnit) as IpfcParameter |
|
Adds the specified parameter to the database and initializes the handle. The parameter will be created with units. Exceptions thrown (but not limited to): IpfcXToolkitBadContext - The owner is nonexistent. IpfcXToolkitFound - The specified parameter already exists. IpfcXToolkitNotValid - The specified parameter is invalid.
|
| Function | GetParam | (Name as String) as IpfcParameter [optional] |
|
Retrieves the parameter specified by name. Exceptions thrown (but not limited to): IpfcXToolkitBadContext - The owner is nonexistent. IpfcXToolkitNotFound - The parameter was not found within the owner.
|
| Function | ListParams | () as IpfcParameters [optional] |
|
Provides a list of parameters associated with the parameter owner. Exceptions thrown (but not limited to): IpfcXToolkitNotFound - No parameters were found.
|
| Function | SelectParam | () as IpfcParameter [optional] |
|
Enables a user to select parameters interactively from a list. The top model from which the parameters will be selected must be displayed in the current window. Exceptions thrown (but not limited to): IpfcXToolkitBadContext - The owner is invalid or not found. IpfcXToolkitNotFound - The owner does not contain parameteers. IpfcXToolkitUserAbort - The user aborted the selection. IpfcXToolkitInvalidType - Invalid context for top_model argument.
|
| Function | SelectParameters | (Options as IpfcParameterSelectionOptions [optional]) as IpfcParameters |
|
Enables a user to select parameters interactively from a list displayed based on the parameter selection options specified. The top model from which the parameters will be selected must be displayed in the current window. Exceptions thrown (but not limited to): IpfcXToolkitBadContext - The owner is invalid or not found. IpfcXToolkitNotFound - The owner does not contain parameteers. IpfcXToolkitUserAbort - The user aborted the selection. IpfcXToolkitInvalidType - Invalid context for top_model argument.
|