ActivityDesigner.TextRectangle Proprietà

Definizione

Ottiene il valore del rettangolo di testo nelle coordinate logiche.

protected:
 virtual property System::Drawing::Rectangle TextRectangle { System::Drawing::Rectangle get(); };
protected virtual System.Drawing.Rectangle TextRectangle { get; }
member this.TextRectangle : System.Drawing.Rectangle
Protected Overridable ReadOnly Property TextRectangle As Rectangle

Valore della proprietà

Rectangle contenente il testo associato alla finestra di progettazione.

Esempio

Nell'esempio seguente viene illustrato come eseguire l'override della proprietà TextRectangle. In questo esempio l'oggetto TextRectangle è calcolato mediante i limiti di ActivityDesigner così come il percorso e la dimensione di 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

Commenti

Da utilizzare per determinare la posizione della finestra di progettazione in cui verrà visualizzato Text.

Si applica a