Erlang logo
User's Guide
Reference Manual
Release Notes
PDF
Top

wxErlang
Reference Manual
Version 0.99.1


Expand All
Contract All

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::wxGridCellAttr(), ColText::colour() (see module wx)) -> ok

setBackgroundColour(This::wxGridCellAttr(), ColBack::colour() (see module wx)) -> ok

setFont(This::wxGridCellAttr(), Font::wxFont() (see module wxFont)) -> ok

setAlignment(This::wxGridCellAttr(), HAlign::integer(), VAlign::integer()) -> ok

setReadOnly(This::wxGridCellAttr()) -> ok

Equivalent to setReadOnly(This, []).

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

Types:

Option = {isReadOnly, bool()}

setRenderer(This::wxGridCellAttr(), Renderer::wxGridCellRenderer() (see module wxGridCellRenderer)) -> ok

setEditor(This::wxGridCellAttr(), Editor::wxGridCellEditor() (see module wxGridCellEditor)) -> ok

hasTextColour(This::wxGridCellAttr()) -> bool()

hasBackgroundColour(This::wxGridCellAttr()) -> bool()

hasFont(This::wxGridCellAttr()) -> bool()

hasAlignment(This::wxGridCellAttr()) -> bool()

hasRenderer(This::wxGridCellAttr()) -> bool()

hasEditor(This::wxGridCellAttr()) -> bool()

getTextColour(This::wxGridCellAttr()) -> colour() (see module wx)

getBackgroundColour(This::wxGridCellAttr()) -> colour() (see module wx)

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

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

getRenderer(This::wxGridCellAttr(), Grid::wxGrid() (see module wxGrid), Row::integer(), Col::integer()) -> wxGridCellRenderer() (see module wxGridCellRenderer)

getEditor(This::wxGridCellAttr(), Grid::wxGrid() (see module wxGrid), Row::integer(), Col::integer()) -> wxGridCellEditor() (see module wxGridCellEditor)

isReadOnly(This::wxGridCellAttr()) -> bool()

setDefAttr(This::wxGridCellAttr(), DefAttr::wxGridCellAttr()) -> ok