다음을 통해 공유


SequentialWorkflowHeaderFooter.TextRectangle 속성

정의

머리글 또는 바닥글과 연결된 텍스트의 경계 사각형을 가져옵니다.

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

Rectangle와 연결된 Text의 경계를 정의하는 SequentialWorkflowHeaderFooter입니다.

예제

다음 예제에서는 TextRectangle 속성을 재정의하는 방법을 보여 줍니다. 이 예제에서 TextRectangleSequentialWorkflowHeaderFooter의 경계 및 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

적용 대상