Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ShapeText.VerticalOverflow Property

Gets or sets the vertical overflow type for shape text.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

ShapeTextVerticalOverflowType VerticalOverflow { get; set; }

#Property Value

Type Description
ShapeTextVerticalOverflowType

A ShapeTextVerticalOverflowType enumeration member that specifies the vertical overflow type. The default is Clip.

Available values:

Name Description
Clip

Hides text that does not fit vertically within the shape’s bounds.

Ellipsis

Hides text that does not fit vertically within the shape’s bounds and adds an ellipsis (…) at the end of the visible text.

Overflow

Allows text to overflow the shape vertically. Currently not supported.

#Remarks

Use the VerticalOverflow property to specify whether the text can flow outside a shape vertically.

VerticalOverflow = Clip VerticalOverflow = Ellipsis VerticalOverflow = Overflow
Spreadsheet_ShapeText_VerticalOverflow_Clip Spreadsheet_ShapeText_VerticalOverflow_Ellipsis Spreadsheet_ShapeText_VerticalOverflow_Overflow
See Also