SequentialWorkflowHeaderFooter.TextRectangle 属性
定义
获取与页眉或页脚关联的文本的边框。Gets the bounding rectangle for the text associated with the header or footer.
public:
virtual property System::Drawing::Rectangle TextRectangle { System::Drawing::Rectangle get(); };
public virtual System.Drawing.Rectangle TextRectangle { get; }
member this.TextRectangle : System.Drawing.Rectangle
Public Overridable ReadOnly Property TextRectangle As Rectangle
属性值
Rectangle,用于为与 Text 关联的 SequentialWorkflowHeaderFooter 定义边界。The Rectangle that defines the bounds for the Text associated with the SequentialWorkflowHeaderFooter.
示例
下面的示例演示如何重写 TextRectangle 属性。The following example shows how to override the TextRectangle property. 在此示例中,使用 TextRectangle 的边界以及 SequentialWorkflowHeaderFooter 的位置和大小来计算 ImageRectangle。In this example, the TextRectangle is calculated using the Bounds of the SequentialWorkflowHeaderFooter as well as the location and size of the ImageRectangle.
protected override Rectangle TextRectangle
{
get
{
return new Rectangle(
this.Bounds.Left + 2,
this.ImageRectangle.Bottom,
this.Bounds.Width - 4,
this.Bounds.Height - this.ImageRectangle.Height - 1);
}
}
Protected Overrides ReadOnly Property TextRectangle() As Rectangle
Get
Return New Rectangle( _
Me.Bounds.Left + 2, _
Me.ImageRectangle.Bottom, _
Me.Bounds.Width - 4, _
Me.Bounds.Height - Me.ImageRectangle.Height - 1)
End Get
End Property