.TH wxSlider 3erl "wx 0.99.2" "" "Erlang Module Definition" .SH NAME wxSlider \- See external documentation: wxSlider. .SH DESCRIPTION .LP See external documentation: wxSlider\&. .LP This class is derived (and can use functions) from: .br \fBwxControl\fR\& .br \fBwxWindow\fR\& .br \fBwxEvtHandler\fR\& .SH "DATA TYPES" .RS 2 .TP 2 .B \fIwxSlider()\fR\&: .RS 2 .LP An object reference, The representation is internal and can be changed without notice\&. It can\&'t be used for comparsion stored on disc or distributed for use on other nodes\&. .RE .RE .SH EXPORTS .LP .B new() -> wxSlider() .br .RS .LP See external documentation\&. .RE .LP .B new(Parent, Id, Value, MinValue, MaxValue) -> wxSlider() .br .RS .LP Types: .RS 3 Parent = wxWindow() (see module wxWindow) .br Id = integer() .br Value = integer() .br MinValue = integer() .br MaxValue = integer() .br .RE .RE .RS .LP Equivalent to \fBnew(Parent, Id, Value, MinValue, MaxValue, [])\fR\&\&. .RE .LP .B new(Parent, Id, Value, MinValue, MaxValue, Option::[Option]) -> wxSlider() .br .RS .LP Types: .RS 3 Parent = wxWindow() (see module wxWindow) .br Id = integer() .br Value = integer() .br MinValue = integer() .br MaxValue = integer() .br Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} | {validator, wx_object() (see module wx)} .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B create(This, Parent, Id, Value, MinValue, MaxValue) -> boolean() .br .RS .LP Types: .RS 3 This = wxSlider() .br Parent = wxWindow() (see module wxWindow) .br Id = integer() .br Value = integer() .br MinValue = integer() .br MaxValue = integer() .br .RE .RE .RS .LP Equivalent to \fBcreate(This, Parent, Id, Value, MinValue, MaxValue, [])\fR\&\&. .RE .LP .B create(This, Parent, Id, Value, MinValue, MaxValue, Option::[Option]) -> boolean() .br .RS .LP Types: .RS 3 This = wxSlider() .br Parent = wxWindow() (see module wxWindow) .br Id = integer() .br Value = integer() .br MinValue = integer() .br MaxValue = integer() .br Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} | {validator, wx_object() (see module wx)} .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getLineSize(This) -> integer() .br .RS .LP Types: .RS 3 This = wxSlider() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getMax(This) -> integer() .br .RS .LP Types: .RS 3 This = wxSlider() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getMin(This) -> integer() .br .RS .LP Types: .RS 3 This = wxSlider() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getPageSize(This) -> integer() .br .RS .LP Types: .RS 3 This = wxSlider() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getThumbLength(This) -> integer() .br .RS .LP Types: .RS 3 This = wxSlider() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getValue(This) -> integer() .br .RS .LP Types: .RS 3 This = wxSlider() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B setLineSize(This, LineSize) -> ok .br .RS .LP Types: .RS 3 This = wxSlider() .br LineSize = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B setPageSize(This, PageSize) -> ok .br .RS .LP Types: .RS 3 This = wxSlider() .br PageSize = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B setRange(This, MinValue, MaxValue) -> ok .br .RS .LP Types: .RS 3 This = wxSlider() .br MinValue = integer() .br MaxValue = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B setThumbLength(This, LenPixels) -> ok .br .RS .LP Types: .RS 3 This = wxSlider() .br LenPixels = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B setValue(This, Value) -> ok .br .RS .LP Types: .RS 3 This = wxSlider() .br Value = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B destroy(This::wxSlider()) -> ok .br .RS .LP Destroys this object, do not use object again .RE .SH AUTHORS .LP .I <>