wx.lib.nvdlg._TransferValidator¶
This validator is used to transfer values to/from the widgets and attributes of the dialog.
Class Hierarchy¶
Known Superclasses¶
wx.core.deprecated.<locals.DeprecatedClassProxy
Methods Summary¶
Initialize self. See help(type(self)) for accurate signature. |
|
Clone() -> Object |
|
TransferFromWindow() -> bool |
|
TransferToWindow() -> bool |
|
Validate(parent) -> bool |
Class API¶
- class _TransferValidator(wx.PyValidator)¶
This validator is used to transfer values to/from the widgets and attributes of the dialog.
Methods¶
- __init__(self, name)¶
Initialize self. See help(type(self)) for accurate signature.
- Clone(self)¶
Clone() -> Object
All validator classes must implement the Clone() function, which returns an identical copy of itself.
- TransferFromWindow(self)¶
TransferFromWindow() -> bool
This overridable function is called when the value in the window must be transferred to the validator.
- TransferToWindow(self)¶
TransferToWindow() -> bool
This overridable function is called when the value associated with the validator must be transferred to the window.
- Validate(self, win)¶
Validate(parent) -> bool
This overridable function is called when the value in the associated window must be validated.