Class: Wx::GRID::GridEditorCreatedEvent

Inherits:
CommandEvent show all
Defined in:
lib/wx/doc/gen/grid/grid_editor_created_event.rb

Overview

Events using this class

The following event-handler methods redirect the events to member method or handler blocks for GridEditorCreatedEvent events. Event handler methods:

Category: Grid Related Classes, Events

Requires:

  • USE_GRID

Instance Method Summary collapse

Methods inherited from CommandEvent

#client_data, #client_data=, #get_client_data, #get_client_object, #get_int, #get_selection, #get_string, #is_checked, #is_selection, #set_client_data, #set_client_object, #set_extra_long, #set_int, #set_string

Methods inherited from Event

#clone, #get_event_category, #get_event_object, #get_event_type, #get_id, #get_skipped, #get_timestamp, #is_command_event, #resume_propagation, #set_event_object, #set_event_type, #set_id, #set_timestamp, #should_propagate, #skip, #stop_propagation

Methods inherited from Object

#clone, #dup, #is_same_as, #un_share

Constructor Details

#initializeWx::GRID::GridEditorCreatedEvent #initialize(id, type, obj, row, col, ctrl) ⇒ Wx::GRID::GridEditorCreatedEvent

Returns a new instance of GridEditorCreatedEvent.

Overloads:



39
# File 'lib/wx/doc/gen/grid/grid_editor_created_event.rb', line 39

def initialize(*args) end

Instance Method Details

#get_colInteger Also known as: col

Returns the column at which the event occurred.

Returns:

  • (Integer)


43
# File 'lib/wx/doc/gen/grid/grid_editor_created_event.rb', line 43

def get_col; end

#get_controlWx::Control Also known as: control

Returns the edit control.

This function is preserved for compatibility, but #get_window should be preferred in the new code as the associated window doesn’t need to be of a Control-derived class. Note that if #set_window had been called with an object not deriving from Control, this method will return NULL.

Returns:



51
# File 'lib/wx/doc/gen/grid/grid_editor_created_event.rb', line 51

def get_control; end

#get_rowInteger Also known as: row

Returns the row at which the event occurred.

Returns:

  • (Integer)


56
# File 'lib/wx/doc/gen/grid/grid_editor_created_event.rb', line 56

def get_row; end

#get_windowWx::Window Also known as: window

Returns the edit window.

Returns:



61
# File 'lib/wx/doc/gen/grid/grid_editor_created_event.rb', line 61

def get_window; end

#set_col(col) ⇒ void Also known as: col=

This method returns an undefined value.

Sets the column at which the event occurred.

Parameters:

  • col (Integer)


67
# File 'lib/wx/doc/gen/grid/grid_editor_created_event.rb', line 67

def set_col(col) end

#set_control(ctrl) ⇒ void Also known as: control=

This method returns an undefined value.

Sets the edit control.

This function is preserved for compatibility, but #set_window should be preferred in the new code, see #get_control.

Parameters:



75
# File 'lib/wx/doc/gen/grid/grid_editor_created_event.rb', line 75

def set_control(ctrl) end

#set_row(row) ⇒ void Also known as: row=

This method returns an undefined value.

Sets the row at which the event occurred.

Parameters:

  • row (Integer)


81
# File 'lib/wx/doc/gen/grid/grid_editor_created_event.rb', line 81

def set_row(row) end

#set_window(window) ⇒ void Also known as: window=

This method returns an undefined value.

Sets the edit window.

Parameters:



87
# File 'lib/wx/doc/gen/grid/grid_editor_created_event.rb', line 87

def set_window(window) end