Share via


LookupTableDataSet.LookupTableMasksRow.LT_MASK_VALUE_SEPARATOR property

Specifies the separator character used in a lookup table mask for lookup table values.

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

Syntax

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

value = instance.LT_MASK_VALUE_SEPARATOR

instance.LT_MASK_VALUE_SEPARATOR = value
public string LT_MASK_VALUE_SEPARATOR { get; set; }

Property value

Type: System.String

Remarks

To help understand the LT_MASK_VALUE_SEPARATOR property, suppose lut is a LookupTableWS.LookupTableDataSet object which contains three lookup table mask rows (LookupTableWS is the name for a reference to the LookupTable Web service). If the full value of a lookup table entry is WA.King.Redmond, for example, and the code mask preview in the Edit Lookup Table page of Project Web App is AA.*.*, then the value of lut.LookupTableMasks[0].LT_MASK_VALUE_SEPARATOR = ".".

If you serialize lut to an XML file, the first LookupTableMasks element has the following values.

<LookupTableMasks>
    <LT_UID>5ee9b465-489c-4083-bb26-0694918103f6</LT_UID>
    <LT_MASK_STRUCT_LEVEL>1</LT_MASK_STRUCT_LEVEL>
    <LT_MASK_STRUCT_TYPE_ENUM>1</LT_MASK_STRUCT_TYPE_ENUM>
    <LT_MASK_STRUCT_LENGTH>2</LT_MASK_STRUCT_LENGTH>
    <LT_MASK_VALUE_SEPARATOR>.</LT_MASK_VALUE_SEPARATOR>
</LookupTableMasks>

For more information and examples, see Walkthrough: Creating a Hierarchical Lookup Table.

See also

Reference

LookupTableDataSet.LookupTableMasksRow class

LookupTableDataSet.LookupTableMasksRow members

WebSvcLookupTable namespace