Developing Windows Clients |
Describes the available result package library member entry object actions.
ResultPackageLibraryMemberEntry Full Description
Attributes
ResultPackage Property
Index Property
Description Property
NameValues Property
MemberType Property
Libname Property
Member Property
Methods
GetNameValuePairs Method
This object facilitates result package SAS library member entry manipulation. You may obtain attributes associated with the library member entry, retrieve the libname and member name associated with the library member entry, or assign the libname and member name associated with the library member entry.
The parent of this object.
Type: ResultPackage
Description
Use this property to navigate back to the ResultPackage object which is the parent of this object.
Example
Usage
Index of SAS library member entry within containing result package.
Type: Long
Description
Identifies which result package entry corresponds to this object.
Example
Usage
SAS library member entry description.
Type: String
Description
Use this property to obtain the description associated with this library member entry. The description is assigned when the library member entry is created.
Example
Usage
SAS library member entry name/value pairs.
Type: String
Description
Use this property to obtain the name/value pairs associated with this library member entry. The name/value pairs are assigned when the library member entry is created.
Example
Usage
SAS library member entry SAS member type.
Type: String
Description
Use this property to obtain the SAS member type of the library member entry. A list of possible member types can be found in the "SAS Language" documentation - common member types are DATA, CATALOG, VIEW and ACCESS. The SAS member type is assigned when the library member entry is created.
Example
Usage
SAS library entry member libname.
Type: String
Description
Use this property to obtain the libname of the library member entry. The libname is assigned when the library member entry is created.
Example
Usage
SAS library member entry member name.
Type: String
Description
Use this property to obtain the member name of the library member entry. The member name is assigned when the library member entry is created.
Example
Usage
SAS library entry member parsed name/value pairs.
Description
Call this method to return a two dimensional string array containing the parsed name/value pairs.
Usage
Parameters
Name | Direction | Type | Description |
---|---|---|---|
nvPairs | out | String(row,col) | A two dimensional string array containing the parsed name/value pairs.
The two dimensional string array is populated in the following manner:
For the NameValues: "name1 name2=a name3=(b,c)" GetNameValuePairs would return: Column 0 Column 1 Row 0 "name1" Row 1 "name2" "a" Row 2 "name3" "b" Row 3 "c" |
Example
See Also
Developing Windows Clients |