Contents Developing Windows Clients  

ResultPackageLibraryMemberEntry Object

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

Description

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.



Readonly Property ResultPackage

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


Readonly Property Index

Index of SAS library member entry within containing result package.

Type: Long

Description

Identifies which result package entry corresponds to this object.

Example

Usage


Readonly Property Description

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


Readonly Property NameValues

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


Readonly Property MemberType

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


Readonly Property Libname

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


Readonly Property Member

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


Method GetNameValuePairs

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

NameValues

Contents Developing Windows Clients