Back to Devexpress

TextBox.RotateTextWithShape Property

officefileapi-devexpress-dot-xtrarichedit-dot-api-dot-native-dot-textbox-b6834788.md

latest2.2 KB
Original Source

TextBox.RotateTextWithShape Property

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

Declaration

csharp
bool RotateTextWithShape { get; set; }
vb
Property RotateTextWithShape As Boolean

Property Value

TypeDescription
Boolean

true , to rotate text with shape; otherwise, false.

|

Remarks

The code sample below shows how to enable these options for all text boxes in the document:

csharp
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;
        }
    }
}
vb
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

TextBox Interface

TextBox Members

DevExpress.XtraRichEdit.API.Native Namespace