.TH wxImageList 3erl "wx 1.8" "" "Erlang Module Definition" .SH NAME wxImageList \- See external documentation: wxImageList. .SH DESCRIPTION .LP See external documentation: wxImageList\&. .SH "DATA TYPES" .RS 2 .TP 2 .B wxImageList(): .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() -> \fBwxImageList()\fR\& .br .RS .LP See external documentation\&. .RE .LP .B new(Width, Height) -> \fBwxImageList()\fR\& .br .RS .LP Types: .RS 3 Width = integer() .br Height = integer() .br .RE .RE .RS .LP Equivalent to \fBnew(Width, Height, [])\fR\&\&. .RE .LP .B new(Width, Height, Options::[Option]) -> \fBwxImageList()\fR\& .br .RS .LP Types: .RS 3 Width = integer() .br Height = integer() .br Option = {mask, boolean()} | {initialCount, integer()} .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B add(This, Bitmap) -> integer() .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br Bitmap = \fBwxBitmap:wxBitmap()\fR\& .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B add(This, Bitmap, Mask) -> integer() .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br Bitmap = \fBwxBitmap:wxBitmap()\fR\& .br Mask = \fBwxBitmap:wxBitmap()\fR\& .br .RE .RE .RS .LP See external documentation\&. .br Also: .br add(This, Bitmap, MaskColour) -> integer() when .br This::wxImageList(), Bitmap::wxBitmap:wxBitmap(), MaskColour::wx:wx_colour()\&. .br .RE .LP .B create(This, Width, Height) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br Width = integer() .br Height = integer() .br .RE .RE .RS .LP Equivalent to \fBcreate(This, Width, Height, [])\fR\&\&. .RE .LP .B create(This, Width, Height, Options::[Option]) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br Width = integer() .br Height = integer() .br Option = {mask, boolean()} | {initialCount, integer()} .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B draw(This, Index, Dc, X, Y) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br Index = integer() .br Dc = \fBwxDC:wxDC()\fR\& .br X = integer() .br Y = integer() .br .RE .RE .RS .LP Equivalent to \fBdraw(This, Index, Dc, X, Y, [])\fR\&\&. .RE .LP .B draw(This, Index, Dc, X, Y, Options::[Option]) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br Index = integer() .br Dc = \fBwxDC:wxDC()\fR\& .br X = integer() .br Y = integer() .br Option = {flags, integer()} | {solidBackground, boolean()} .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getBitmap(This, Index) -> \fBwxBitmap:wxBitmap()\fR\& .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br Index = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getIcon(This, Index) -> \fBwxIcon:wxIcon()\fR\& .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br Index = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getImageCount(This) -> integer() .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getSize(This, Index) -> Result .br .RS .LP Types: .RS 3 Result = {Res::boolean(), Width::integer(), Height::integer()} .br This = \fBwxImageList()\fR\& .br Index = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B remove(This, Index) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br Index = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B removeAll(This) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B replace(This, Index, Bitmap) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br Index = integer() .br Bitmap = \fBwxBitmap:wxBitmap()\fR\& .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B replace(This, Index, Bitmap, Mask) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxImageList()\fR\& .br Index = integer() .br Bitmap = \fBwxBitmap:wxBitmap()\fR\& .br Mask = \fBwxBitmap:wxBitmap()\fR\& .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B destroy(This::\fBwxImageList()\fR\&) -> ok .br .RS .LP Destroys this object, do not use object again .RE .SH AUTHORS .LP .I <>