wxgridsizeeventthis event class contains information about a row/column resize event. derived from
wxnotifyevent include files <wx/grid.h> event handling the event handler for the following functions takes a wxgridsizeevent parameter. the ..._cmd_... variants also take a window identifier.
wxgridsizeevent::wxgridsizeevent
wxgridsizeevent::wxgridsizeeventwxgridsizeevent() default constructor. wxgridsizeevent(int id, wxeventtype type, wxobject* obj, int roworcol = -1, int x = -1, int y = -1, bool control = false, bool shift = false, bool alt = false, bool meta = false)
wxgridsizeevent::altdownbool altdown() returns true if the alt key was down at the time of the event.
wxgridsizeevent::controldownbool controldown() returns true if the control key was down at the time of the event.
wxgridsizeevent::getpositionwxpoint getposition() position in pixels at which the event occurred.
wxgridsizeevent::getroworcolint getroworcol() row or column at that was resized.
wxgridsizeevent::metadownbool metadown() returns true if the meta key was down at the time of the event.
wxgridsizeevent::shiftdownbool shiftdown() returns true if the shift key was down at the time of the event.
|