'Declaration
<SRCategoryAttribute("CatBehavior")> <SRDescriptionAttribute("measureItemEventDescr")> Public Event MeasureItem As System.Windows.Forms.MeasureItemEventHandler
'Usage
Dim instance As NFontListBox Dim handler As System.Windows.Forms.MeasureItemEventHandler AddHandler instance.MeasureItem, handler
[SRCategory("CatBehavior")] [SRDescription("measureItemEventDescr")] public event System.Windows.Forms.MeasureItemEventHandler MeasureItem
Event Data
The event handler receives an argument of type System.Windows.Forms.MeasureItemEventArgs containing data related to this event. The following MeasureItemEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Graphics | Gets the System.Drawing.Graphics object to measure against. |
Index | Gets the index of the item for which the height and width is needed. |
ItemHeight | Gets or sets the height of the item specified by the System.Windows.Forms.MeasureItemEventArgs.Index. |
ItemWidth | Gets or sets the width of the item specified by the System.Windows.Forms.MeasureItemEventArgs.Index. |
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