Declaration ​
pascal
procedure SetPixelTS(X, Y: Integer; Value: TColor32);Parameters ​
| Parameter | Type | Description |
|---|---|---|
X, Y | Integer | Pixel coordinates. |
Value | TColor32 | 32-bit ARGB color. |
Description ​
SetPixelTS checks coordinate boundaries against ClipRect before writing with alpha blending.
Example ​
pascal
Bitmap.SetPixelTS(-5, 10, clRed32); // Safe against out-of-bounds coordinates