Provided by: erlang-manpages_25.3.2.8+dfsg-1ubuntu4_all
NAME
wxPasswordEntryDialog - Functions for wxPasswordEntryDialog class
DESCRIPTION
This class represents a dialog that requests a one-line password string from the user. It is implemented as a generic wxWidgets dialog. See: Overview cmndlg This class is derived (and can use functions) from: wxTextEntryDialog wxDialog wxTopLevelWindow wxWindow wxEvtHandler wxWidgets docs: wxPasswordEntryDialog
DATA TYPES
wxPasswordEntryDialog() = wx:wx_object()
EXPORTS
new(Parent, Message) -> wxPasswordEntryDialog() Types: Parent = wxWindow:wxWindow() Message = unicode:chardata() new(Parent, Message, Options :: [Option]) -> wxPasswordEntryDialog() Types: Parent = wxWindow:wxWindow() Message = unicode:chardata() Option = {caption, unicode:chardata()} | {value, unicode:chardata()} | {style, integer()} | {pos, {X :: integer(), Y :: integer()}} Constructor. Use wxDialog:showModal/1 to show the dialog. destroy(This :: wxPasswordEntryDialog()) -> ok Destroys the object.