Table of Contents

Property this

Namespace
PaintDotNet
Assembly
PaintDotNet.Core.dll

this[int, int]

Gets or sets the pixel value at the requested offset.

public ColorBgra this[int x, int y] { get; set; }

Parameters

x int
y int

Property Value

ColorBgra

Remarks

This property is implemented with correctness and error checking in mind. If performance is a concern, do not use it.

this[Point]

Gets or sets the pixel value at the requested offset.

public ColorBgra this[Point pt] { get; set; }

Parameters

pt Point

Property Value

ColorBgra

Remarks

This property is implemented with correctness and error checking in mind. If performance is a concern, do not use it.