Contents Developing Windows Clients  

ResultPackageReferenceEntry Object

Describes the available result package reference entry object actions.

ResultPackageReferenceEntry Full Description

Attributes

ResultPackage Property
Index Property
Description Property
NameValues Property
ReferenceType Property
Reference Property

Methods

GetNameValuePairs Method

Description

This object facilitates acquiring information regarding a result package reference 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 reference entry within containing result package.

Type: Long

Description

Identifies which result package entry corresponds to this object.

Example

Usage


Readonly Property Description

Reference entry description.

Type: String

Description

Use this property to obtain the description associated with this reference entry. The description is assigned when the reference entry is created.

Example

Usage


Readonly Property NameValues

Reference entry name/value pairs.

Type: String

Description

Use this property to obtain the name/value pairs associated with this reference entry. The name/value pairs are assigned when the reference entry is created.

Example

Usage


Readonly Property ReferenceType

Type of reference; HTML, URL, etc.

Type: String

Description

Use this property to obtain the type of reference (HTML, URL, etc.). The reference type is assigned when the reference entry is created.

Example

Usage


Readonly Property Reference

The actual reference for this entry.

Type: String

Description

Use this property to obtain the actual reference associated with this reference entry. The reference is assigned when the reference entry is created.

Example

Usage


Method GetNameValuePairs

Reference entry 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