Share via


LookupTableDataSet.LookupTableMasksRow.LookupTablesRow Property

Represents the specific lookup table where the code mask is used.

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

Syntax

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

value = instance.LookupTablesRow

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

Property Value

Type: WebSvcLookupTable.LookupTableDataSet.LookupTablesRow

Examples

In the following code fragment, if the lutUid value is the GUID of a lookup table, then lutUidFromMask gets the same 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.LookupTableMasksRow lutMaskRow = 
    lut.LookupTableMasks[0];
LookupTableWS.LookupTableDataSet.LookupTablesRow lutRow = 
    lutMaskRow.LookupTablesRow;
Guid lutUidFromMask = lutRow.LT_UID;
. . .

See Also

Reference

LookupTableDataSet.LookupTableMasksRow Class

LookupTableDataSet.LookupTableMasksRow Members

WebSvcLookupTable Namespace