SequentialWorkflowHeaderFooter.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 le rectangle englobant pour le texte associé à l'en-tête ou au pied de page.
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
Valeur de propriété
Rectangle qui définit les limites du Text associé au SequentialWorkflowHeaderFooter.
Exemples
L'exemple qui suit montre comment substituer la propriété TextRectangle. Dans cet exemple, le TextRectangle est calculé à l'aide des limites du SequentialWorkflowHeaderFooter, 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