C# Class SadConsole.Readers.REXPaint.Cell

A RexPaint layer cell.
Show file Open project: Thraka/SadConsole

Public Properties

Property Type Description
Background Color
Character int
Foreground Color

Public Methods

Method Description
Cell ( int character, Color foreground, Color background ) : System
IsTransparent ( ) : bool

Returns true when the current color is considered transparent.

Method Details

Cell() public method

public Cell ( int character, Color foreground, Color background ) : System
character int
foreground Color
background Color
return System

IsTransparent() public method

Returns true when the current color is considered transparent.
public IsTransparent ( ) : bool
return bool

Property Details

Background public property

The background color of the cell.
public Color Background
return Color

Character public property

The character for the cell.
public int Character
return int

Foreground public property

The foreground color of the cell.
public Color Foreground
return Color