ActivityDesigner.TextRectangle Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la valeur du rectangle de texte en coordonnées logiques.
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
Valeur de propriété
Rectangle qui contient le texte associé au concepteur.
Exemples
L'exemple qui suit montre comment substituer la propriété TextRectangle. Dans cet exemple, le TextRectangle est calculé à l'aide des limites du ActivityDesigner, ainsi que de l'emplacement et de la taille du 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
Remarques
À utiliser pour déterminer l'emplacement sur le concepteur où Text sera affiché.