phoenix_title wx.FileDirPickerEvent

This event class is used for the events generated by wx.FilePickerCtrl and by wx.DirPickerCtrl.

^^

events Events Emitted by this Class

Handlers bound for the following event types will receive a wx.FileDirPickerEvent parameter.

  • EVT_FILEPICKER_CHANGED: Generated whenever the selected file changes.

  • EVT_DIRPICKER_CHANGED: Generated whenever the selected directory changes. ^^

class_hierarchy Class Hierarchy

Inheritance diagram for class FileDirPickerEvent:

method_summary Methods Summary

__init__

GetPath

Retrieve the absolute path of the file/directory the user has just selected.

SetPath

Set the absolute path of the file/directory associated with the event.


property_summary Properties Summary

Path

See GetPath and SetPath


api Class API

class wx.FileDirPickerEvent(CommandEvent)

Possible constructors:

FileDirPickerEvent() -> None

FileDirPickerEvent(type : EventType, generator : Object, id : int, path
                   : str) -> None

This event class is used for the events generated by FilePickerCtrl and by DirPickerCtrl.


Methods

__init__(self, *args, **kw)

overload Overloaded Implementations:



__init__ (self)

Return type:

None



__init__ (self, type : EventType, generator : Object, id : int, path : str)

The constructor is not normally used by the user code.

Parameters:
  • type (wx.EventType) –

  • generator (wx.Object) –

  • id (int) –

  • path (string) –

Return type:

None





GetPath(self)

Retrieve the absolute path of the file/directory the user has just selected.

Return type:

str



SetPath(self, path : str)

Set the absolute path of the file/directory associated with the event.

Parameters:

path (string) –

Return type:

None


Properties

Path

See GetPath and SetPath