wxErlang

Reference Manual

Version 1.8.3

Table of Contents

wxGridCellAttr

Module

wxGridCellAttr

Module Summary

See external documentation: wxGridCellAttr.

Description

See external documentation: wxGridCellAttr.

DATA TYPES

wxGridCellAttr()

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.

Exports

setTextColour(This, ColText) -> ok

Types

ColText = wx:wx_colour()

setBackgroundColour(This, ColBack) -> ok

Types

ColBack = wx:wx_colour()

setFont(This, Font) -> ok

Types

setAlignment(This, HAlign, VAlign) -> ok

Types

HAlign = integer()
VAlign = integer()

setReadOnly(This) -> ok

Types

Equivalent to setReadOnly(This, []).

setReadOnly(This, Options::[Option]) -> ok

Types

Option = {isReadOnly, boolean()}

setRenderer(This, Renderer) -> ok

setEditor(This, Editor) -> ok

hasTextColour(This) -> boolean()

Types

hasBackgroundColour(This) -> boolean()

Types

hasFont(This) -> boolean()

Types

hasAlignment(This) -> boolean()

Types

hasRenderer(This) -> boolean()

Types

hasEditor(This) -> boolean()

Types

getTextColour(This) -> wx:wx_colour4()

Types

getBackgroundColour(This) -> wx:wx_colour4()

Types

getFont(This) -> wxFont:wxFont()

Types

getAlignment(This) -> {HAlign::integer(), VAlign::integer()}

Types

getRenderer(This, Grid, Row, Col) -> wxGridCellRenderer:wxGridCellRenderer()

Types

Row = integer()
Col = integer()

getEditor(This, Grid, Row, Col) -> wxGridCellEditor:wxGridCellEditor()

Types

Row = integer()
Col = integer()

isReadOnly(This) -> boolean()

Types

setDefAttr(This, DefAttr) -> ok

Types

DefAttr = wxGridCellAttr()