'Declaration
<SRCategoryAttribute("CatBehavior")> <SRDescriptionAttribute("RichTextBoxContentsResized")> Public Event ContentsResized As System.Windows.Forms.ContentsResizedEventHandler
'Usage
Dim instance As NRichTextBox Dim handler As System.Windows.Forms.ContentsResizedEventHandler AddHandler instance.ContentsResized, handler
[SRCategory("CatBehavior")] [SRDescription("RichTextBoxContentsResized")] public event System.Windows.Forms.ContentsResizedEventHandler ContentsResized
Event Data
The event handler receives an argument of type System.Windows.Forms.ContentsResizedEventArgs containing data related to this event. The following ContentsResizedEventArgs properties provide information specific to this event.
Property | Description |
---|---|
NewRectangle | Represents the requested size of the System.Windows.Forms.RichTextBox control. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also