[]
Represents the format of a text frame.
public class TextFrameFormat : FormattingBag
Gets or sets a value indicating that a shape should be auto-fit to fully contain the text described within it.
Auto-fitting is when text within a shape is scaled in order to contain all the text inside.
public bool FitShapeToText { get; set; }
Gets or sets a value indicating whether to keep text out of 3D scene.
The default value is false.
If the value is true, the following properties will be ignored:
public bool FlatText { get; set; }
Gets the insets of the bounding rectangle.
Insets are used just as internal margins for text frame within shapes.
public EdgeExtent Margin { get; }
Gets or sets whether text should remain upright, regardless of the transform applied to it and the accompanying shape transform.
public bool NoTextRotation { get; set; }
Gets or sets how the text within the given text body should be displayed.
public TextOrientation Orientation { get; set; }
Gets the 3D format effect.
public ThreeDFormat ThreeDFormat { get; }
Gets the 3D scene effect.
public ThreeDScene ThreeDScene { get; }
Gets or sets the vertical anchoring position of the text frame within the shape.
public TextVerticalAnchor VerticalAnchor { get; set; }
Gets or sets whether to wrap words within the bounding rectangle.
public bool WordWrap { get; set; }
Gets or sets how text frame transform a text.
public TextWrapFormat WrapFormat { get; set; }