MultiLevelType.Val Property
Abstract Numbering Definition Type.Represents the attribte in schema: w:val
Namespace: DocumentFormat.OpenXml.Wordprocessing
Assembly: DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)
Syntax
'Declaration
<SchemaAttrAttribute(, "val")> _
Public Property Val As EnumValue(Of MultiLevelValues)
Get
Set
'Usage
Dim instance As MultiLevelType
Dim value As EnumValue(Of MultiLevelValues)
value = instance.Val
instance.Val = value
[SchemaAttrAttribute(, "val")]
public EnumValue<MultiLevelValues> Val { get; set; }
Property Value
Type: DocumentFormat.OpenXml.EnumValue<MultiLevelValues>
Returns EnumValue<T>.
Remarks
The following information from the ECMA International Standard ECMA-376 can be useful when working with this class.
multiLevelType (Abstract Numbering Definition Type)
Specifies the specific type of numbering enabled by a given abstract numbering definition.
Consider the WordprocessingML below:
<w:abstractNum w:abstractNumId="8">
…
<w:multiLevelType w:val="multiLevel" />
…
</w:abstractNum>
This abstract numbering definition is specified to be of the multiLevel type, which may be used by consumers to place this numbering correctly within a user interface.
The possible values for this attribute are defined by the ST_MultiLevelType simple type.