wxGridCellAttr

See external documentation: wxGridCellAttr.

See external documentation: wxGridCellAttr.

Types


wxGridCellAttr() = wx:wx_object()

Functions


setTextColour(This, ColText) -> ok

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

See external documentation.

setBackgroundColour(This, ColBack) -> ok

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

See external documentation.

setFont(This, Font) -> ok

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

See external documentation.

setAlignment(This, HAlign, VAlign) -> ok

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

See external documentation.

setReadOnly(This) -> ok

  • This = wxGridCellAttr()

Equivalent to setReadOnly(This, []).

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

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

See external documentation.

setRenderer(This, Renderer) -> ok

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

See external documentation.

setEditor(This, Editor) -> ok

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

See external documentation.

hasTextColour(This) -> boolean()

  • This = wxGridCellAttr()

See external documentation.

hasBackgroundColour(This) -> boolean()

  • This = wxGridCellAttr()

See external documentation.

hasFont(This) -> boolean()

  • This = wxGridCellAttr()

See external documentation.

hasAlignment(This) -> boolean()

  • This = wxGridCellAttr()

See external documentation.

hasRenderer(This) -> boolean()

  • This = wxGridCellAttr()

See external documentation.

hasEditor(This) -> boolean()

  • This = wxGridCellAttr()

See external documentation.

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

  • This = wxGridCellAttr()

See external documentation.

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

  • This = wxGridCellAttr()

See external documentation.

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

  • This = wxGridCellAttr()

See external documentation.

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

  • This = wxGridCellAttr()

See external documentation.

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

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

See external documentation.

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

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

See external documentation.

isReadOnly(This) -> boolean()

  • This = wxGridCellAttr()

See external documentation.

setDefAttr(This, DefAttr) -> ok

  • This = wxGridCellAttr()
  • DefAttr = wxGridCellAttr()

See external documentation.