wxGridCellAttr(3) 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:

This = wxGridCellAttr()
ColText = wx_colour() (see module wx)

See external documentation.

setBackgroundColour(This, ColBack) -> ok

Types:

This = wxGridCellAttr()
ColBack = wx_colour() (see module wx)

See external documentation.

setFont(This, Font) -> ok

Types:

This = wxGridCellAttr()
Font = wxFont() (see module wxFont)

See external documentation.

setAlignment(This, HAlign, VAlign) -> ok

Types:

This = wxGridCellAttr()
HAlign = integer()
VAlign = integer()

See external documentation.

setReadOnly(This) -> ok

Types:

This = wxGridCellAttr()

Equivalent to setReadOnly(This, []).

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

Types:

This = wxGridCellAttr()
Option = {isReadOnly, boolean()}

See external documentation.

setRenderer(This, Renderer) -> ok

Types:

This = wxGridCellAttr()
Renderer = wxGridCellRenderer() (see module wxGridCellRenderer)

See external documentation.

setEditor(This, Editor) -> ok

Types:

This = wxGridCellAttr()
Editor = wxGridCellEditor() (see module wxGridCellEditor)

See external documentation.

hasTextColour(This) -> boolean()

Types:

This = wxGridCellAttr()

See external documentation.

hasBackgroundColour(This) -> boolean()

Types:

This = wxGridCellAttr()

See external documentation.

hasFont(This) -> boolean()

Types:

This = wxGridCellAttr()

See external documentation.

hasAlignment(This) -> boolean()

Types:

This = wxGridCellAttr()

See external documentation.

hasRenderer(This) -> boolean()

Types:

This = wxGridCellAttr()

See external documentation.

hasEditor(This) -> boolean()

Types:

This = wxGridCellAttr()

See external documentation.

getTextColour(This) -> wx_colour4() (see module wx)

Types:

This = wxGridCellAttr()

See external documentation.

getBackgroundColour(This) -> wx_colour4() (see module wx)

Types:

This = wxGridCellAttr()

See external documentation.

getFont(This) -> wxFont() (see module wxFont)

Types:

This = wxGridCellAttr()

See external documentation.

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

Types:

This = wxGridCellAttr()

See external documentation.

getRenderer(This, Grid, Row, Col) -> wxGridCellRenderer() (see module wxGridCellRenderer)

Types:

This = wxGridCellAttr()
Grid = wxGrid() (see module wxGrid)
Row = integer()
Col = integer()

See external documentation.

getEditor(This, Grid, Row, Col) -> wxGridCellEditor() (see module wxGridCellEditor)

Types:

This = wxGridCellAttr()
Grid = wxGrid() (see module wxGrid)
Row = integer()
Col = integer()

See external documentation.

isReadOnly(This) -> boolean()

Types:

This = wxGridCellAttr()

See external documentation.

setDefAttr(This, DefAttr) -> ok

Types:

This = wxGridCellAttr()
DefAttr = wxGridCellAttr()

See external documentation.

AUTHORS

<>