Back to Devexpress

Shape.ShapeText Property

officefileapi-devexpress-dot-spreadsheet-dot-shape-e3cba60e.md

latest3.0 KB
Original Source

Shape.ShapeText Property

Provides access to the shape’s text options.

Namespace : DevExpress.Spreadsheet

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

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
ShapeText ShapeText { get; }
vb
ReadOnly Property ShapeText As ShapeText

Property Value

TypeDescription
ShapeText

A ShapeText object containing the shape’s text options.

|

Remarks

Use the ShapeText property to access the shape text. You can retrieve a text range using the ShapeText.Characters method. The ShapeTextRange.Text property allows you to change the range’s text.

Refer to the How to: Add Text to a Shape topic for more information.

Example

csharp
ShapeText shapeText = shape4.ShapeText;

//Create a text range:
ShapeTextRange range = shapeText.Characters();

//Specify the shape's text 
range.Text = "Shape ";

//Set font properties:
range.Font.Bold = true;
range.Font.Color = Color.YellowGreen;

//Add new text range after the existing text
//And specify the font parameters:         
ShapeTextRange range2 = range.AddAfter("Text");
range2.Font.Italic = true;
range2.Font.Name = "Arial";
range2.Font.Color = Color.BurlyWood;

//Define the text's vertical and horizontal alignment:
shapeText.VerticalAnchor = ShapeTextVerticalAnchorType.Center;
shapeText.HorizontalAnchor = ShapeTextHorizontalAnchorType.Center;
vb
Dim shapeText As ShapeText = shape4.ShapeText

'Create a text range:
Dim range As ShapeTextRange = shapeText.Characters()

'Specify the shape's text:
range.Text = "Shape "

'Set font properties:
range.Font.Bold = True
range.Font.Color = Color.YellowGreen

'Add new text range after the existing text
' And specify the font parameters:  
Dim range2 As ShapeTextRange = range.AddAfter("Text")
range2.Font.Italic = True
range2.Font.Name = "Arial"
range2.Font.Color = Color.BurlyWood

'Define the text's vertical and horizontal alignment:
shapeText.VerticalAnchor = ShapeTextVerticalAnchorType.Center
shapeText.HorizontalAnchor = ShapeTextHorizontalAnchorType.Center

See Also

Shape Interface

Shape Members

DevExpress.Spreadsheet Namespace