Class Padding
Represents padding information associated with a report item.
Inheritance
Namespace: Telerik.Reporting.Drawing
Assembly: Telerik.Reporting.dll
Syntax
public class Padding : IPadding
Remarks
The padding is the internal space between the body of the item and its edge.
Padding has a different effect on report items that are containers than on report items that are not. For example, in a Panel item, the Padding property defines the spacing between the border of the Panel and its child items. For a TextBox item, the Padding property defines the spacing between the border of the TextBox item and its contained text.
Properties
Bottom
Gets or sets the padding value for the bottom edge.
Declaration
public Unit Bottom { get; set; }
Property Value
Unit
The padding, in Units, for the bottom edge. |
Left
Gets or sets the padding value for the left edge.
Declaration
public Unit Left { get; set; }
Property Value
Unit
The padding, in Units, for the left edge. |
Right
Gets or sets the padding value for the right edge.
Declaration
public Unit Right { get; set; }
Property Value
Unit
The padding, in Units, for the right edge. |
Top
Gets or sets the padding value for the top edge.
Declaration
public Unit Top { get; set; }
Property Value
Unit
The padding, in Units, for the top edge. |
Methods
ToString()
This member overrides System.Object.ToString()
Declaration
public override string ToString()
Returns
System.String
A string value listing the Padding's members. |