LookupTableDataSet.LookupTableMasksRow.LookupTablesRow property
Represents the specific lookup table where the code mask is used.
Namespace: WebSvcLookupTable
Assembly: ProjectServerServices (in ProjectServerServices.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 example, 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