REXPaintImage.Layer Class
Definition
Section titled “Definition”A layer of a RexPaint image.
public class REXPaintImage.LayerInheritance object
Constructors
Section titled “Constructors”Layer(int, int)
Section titled “Layer(int, int)”Creates a new layer with the specified width and height.
public Layer(int width, int height)Parameters
Section titled “Parameters”width int
The width of the layer.
height int
The height of the layer.
Properties
Section titled “Properties”The width of the layer.
public int Width { get; }Height
Section titled “Height”The height of the layer.
public int Height { get; }Represents all cells of the layer.
public ReadOnlyCollection<REXPaintImage.Cell> Cells { get; }this[int, int]
Section titled “this[int, int]”Gets a cell by coordinates.
public REXPaintImage.Cell this[int x, int y] { get; set; }this[int]
Section titled “this[int]”Gets a cell by index.
public REXPaintImage.Cell this[int index] { get; set; }