TableCellProperties.HorizontalOverflow Property
Horizontal Overflow.Represents the attribte in schema: horzOverflow
Namespace: DocumentFormat.OpenXml.Drawing
Assembly: DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)
Syntax
'Declaration
<SchemaAttrAttribute(, "horzOverflow")> _
Public Property HorizontalOverflow As EnumValue(Of TextHorizontalOverflowValues)
Get
Set
'Usage
Dim instance As TableCellProperties
Dim value As EnumValue(Of TextHorizontalOverflowValues)
value = instance.HorizontalOverflow
instance.HorizontalOverflow = value
[SchemaAttrAttribute(, "horzOverflow")]
public EnumValue<TextHorizontalOverflowValues> HorizontalOverflow { get; set; }
Property Value
Type: DocumentFormat.OpenXml.EnumValue<TextHorizontalOverflowValues>
Returns EnumValue<T>.
Remarks
The following information from the ECMA International Standard ECMA-376 can be useful when working with this class.
Specifies the clipping behavior of the cell. The two options here allow for the text to be clipped and out of view when outside of the bounds of the cell, or for the text to remain visible and overflow outside of the cell.
Consider the following example:
<a:tcPr horzOverflow="overflow">
…
</a:tcPr>
In this example, the text in the cell will freely overflow outside of the cell boundaries and will always remain visible.
The possible values for this attribute are defined by the ST_TextHorzOverflowType simple type.