TextItemBase
Represents a Text Item - a base class for report items like TextBox and CheckBox.
Definition
Namespace:Telerik.Reporting
Assembly:Telerik.Reporting.dll
Syntax:
public abstract class TextItemBase : ReportItem, IToggleVisibilityTarget, IActionTarget
Inheritance: objectReportObjectReportItemBaseReportItemTextItemBase
Derived Classes:
Implements:
Inherited Members
Constructors
protected TextItemBase()
Properties
Angle
double
Gets or sets the angle of rotation of the text in degrees.
public double Angle { get; set; }
A double value indicating the angle of rotation in degrees.
More info on the Angle property behavior can be found at Text Box - Text Orientation
CanGrow
bool
Gets or sets a value indicating whether the Text Item can grow vertically.
public bool CanGrow { get; set; }
true if the Text Item can grow vertically; otherwise false.
CanShrink
bool
Gets or sets a value indicating whether the Text Item can shrink vertically.
public bool CanShrink { get; set; }
true if the Text Item can shrink vertically; otherwise false.
Culture
CultureInfo
Gets or sets the culture information associated with the Text Item.
public CultureInfo Culture { get; set; }
A CultureInfo representing the culture supported by the TextItemBase.
TODO: Add documentation.
protected override SizeU DefaultSize { get; }
Overrides:
Format
string
Gets or sets the character(s) that specify how text is formatted.
public string Format { get; set; }
The character or characters that specify how text is formatted.
Uses the The .NET Framework Composite Formatting feature which takes a composite format string as input.
The format string is provided in the same manner as in the
For more information and examples see String.Format Method.
Multiline
bool
Gets or sets a value indicating whether this is a multiline Text Item.
public bool Multiline { get; set; }
true if the Text Item supports multiple lines; otherwise false.
TextWrap
bool
Gets or sets a value indicating whether a Text Item automatically wraps words to the beginning of the next line when necessary.
public bool TextWrap { get; set; }
true if the Text Item wraps words; otherwise false.