[]
Describes the inner border and filling of a table cell or table frame.
public class FrameStyle
Initializes a new instance of the FrameStyle class.
public FrameStyle()
Initializes a new instance of the FrameStyle class.
public FrameStyle(FrameStyle source)
source
FrameStyleThe source FrameStyle to copy data from.
Gets or sets a value specifying which border lines are drawn in a table cell or table frame. The default is AllBorders.
public FrameBorders Borders { get; set; }
Gets or sets the corner radius for the inner border, in graphic units. The default is 0.
This property only has effect if all border lines are drawn.
public float CornerRadius { get; set; }
Gets or sets the brush to fill background of the inner area.
public Brush FillBrush { get; set; }
Gets or sets the color to fill background of the inner area. The default is transparent.
Ignored if the FillBrush property is set.
public Color FillColor { get; set; }
Gets or sets the color of the inner border line. The default is black.
Ignored if the Pen property is set.
public Color LineColor { get; set; }
Gets or sets all line padding values at once (left, top, right, bottom), in graphic units.
public float? LinePaddingAll { get; set; }
Gets or sets the bottom padding of the inner border, in graphic units. The default is 0.
public float LinePaddingBottom { get; set; }
Gets or sets the left padding of the inner border, in graphic units. The default is 0.
public float LinePaddingLeft { get; set; }
Gets or sets the left and right padding of the inner border, in graphic units.
public float? LinePaddingLeftRight { get; set; }
Gets or sets the right padding of the inner border, in graphic units. The default is 0.
public float LinePaddingRight { get; set; }
Gets or sets the top padding of the inner border, in graphic units. The default is 0.
public float LinePaddingTop { get; set; }
Gets or sets the top and bottom padding of the inner border, in graphic units.
public float? LinePaddingTopBottom { get; set; }
Gets or sets the width of the inner border, in graphic units. The default is 0.
Ignored if the Pen property is set.
public float LineWidth { get; set; }
Gets or sets the pen to draw the inner border line.
public Pen Pen { get; set; }