CheckedListBox.MeasureItem Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when an owner-drawn ListBox is created and the sizes of the list items are determined. This event is not relevant to this class.
public:
event System::Windows::Forms::MeasureItemEventHandler ^ MeasureItem;
[System.ComponentModel.Browsable(false)]
public event System.Windows.Forms.MeasureItemEventHandler MeasureItem;
[System.ComponentModel.Browsable(false)]
public event System.Windows.Forms.MeasureItemEventHandler? MeasureItem;
[<System.ComponentModel.Browsable(false)>]
member this.MeasureItem : System.Windows.Forms.MeasureItemEventHandler
Public Custom Event MeasureItem As MeasureItemEventHandler
Event Type
- Attributes
Remarks
You can create an event handler for this event to specify the size of an item before it is drawn in the DrawItem event. The event is raised only when the DrawMode property is set to OwnerDrawVariable.
The maximum height of a ListBox item is 255 pixels.
This event is not relevant to this class.