LevelSuffix.Val Property
Character Type Between Numbering and Text.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 LevelSuffixValues)
Get
Set
'Usage
Dim instance As LevelSuffix
Dim value As EnumValue(Of LevelSuffixValues)
value = instance.Val
instance.Val = value
[SchemaAttrAttribute(, "val")]
public EnumValue<LevelSuffixValues> Val { get; set; }
Property Value
Type: DocumentFormat.OpenXml.EnumValue<LevelSuffixValues>
Returns EnumValue<T>.
Remarks
The following information from the ECMA International Standard ECMA-376 can be useful when working with this class.
Specifies the character which shall follow the list number.
Consider a numbered for which a tab exists between the numbering symbol and the numbered paragraph's text. The tab would be specified in WordprocessingML as follows:
<w:lvl w:ilvl="0">
…
<w:suff w:val="tab" />
…
</w:lvl>
The val attribute with a value of tab specifies that the character between the numbering's level text and the paragraph text shall be a tab. This tab will follow normal tab stop rules.
The possible values for this attribute are defined by the ST_LevelSuffix simple type.