officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-textbox-b6834788.md
Gets or sets whether to rotate the text box content with the text box.
Namespace : DevExpress.XtraRichEdit.API.Native
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
bool RotateTextWithShape { get; set; }
Property RotateTextWithShape As Boolean
| Type | Description |
|---|---|
| Boolean |
true , to rotate text with shape; otherwise, false.
|
The code sample below shows how to enable these options for all text boxes in the document:
using DevExpress.XtraRichEdit;
using DevExpress.XtraRichEdit.API.Native;
using (RichEditDocumentServer wordProcessor = new RichEditDocumentServer())
{
Document document = wordProcessor.Document;
foreach (Shape shape in document.Shapes)
{
if (shape.ShapeFormat != null && shape.ShapeFormat.TextBox != null)
{
shape.ShapeFormat.TextBox.RotateTextWithShape = true;
}
}
}
Imports DevExpress.XtraRichEdit
Imports DevExpress.XtraRichEdit.API.Native
Using wordProcessor As New RichEditDocumentServer()
Dim document As Document = wordProcessor.Document
For Each shape As Shape In document.Shapes
If shape.ShapeFormat IsNot Nothing AndAlso shape.ShapeFormat.TextBox IsNot Nothing Then
shape.ShapeFormat.TextBox.RotateTextWithShape = True
End If
Next shape
End Using
See Also