Share via


LookupTableDataSet.LookupTableTreesRow.LookupTablesRow property

Represents the specific lookup table where the node value is used.

Namespace:  WebSvcLookupTable
Assembly:  ProjectServerServices (in ProjectServerServices.dll)

Syntax

'Declaration
Public Property LookupTablesRow As LookupTableDataSet.LookupTablesRow
    Get
    Set
'Usage
Dim instance As LookupTableDataSet.LookupTableTreesRow
Dim value As LookupTableDataSet.LookupTablesRow

value = instance.LookupTablesRow

instance.LookupTablesRow = value
public LookupTableDataSet.LookupTablesRow LookupTablesRow { get; set; }

Property value

Type: WebSvcLookupTable.LookupTableDataSet.LookupTablesRow

Examples

The following code fragment helps to show the meaning of the LookupTablesRow property. If the lutUid value is the GUID of a lookup table and LookupTableTrees[6] is a valid LookupTableTreesRow, then lutUidFromTreeNode gets the same GUID value. LookupTableWS is an arbitrary name for a reference to the LookupTable Web service.

. . .
Guid lutUid = new Guid("23bdb945-eacc-4390-af70-f8644683c5bb");
Guid[] lutUids = { lutUid };

LookupTableWS.LookupTableDataSet lut = 
    lookupTable.ReadLookupTablesByUids(lutUids, false, 1033);
LookupTableWS.LookupTableDataSet.LookupTableTreesRow lutTreesRow 
    = lut.LookupTableTrees[6];
LookupTableWS.LookupTableDataSet.LookupTablesRow lutRow = 
    lutTreesRow.LookupTablesRow;
Guid lutUidFromTreeNode = lutRow.LT_UID;
. . .

See also

Reference

LookupTableDataSet.LookupTableTreesRow class

LookupTableDataSet.LookupTableTreesRow members

WebSvcLookupTable namespace