Namespace:
ProScript
Assembly:
proscript-csharp (in proscript-csharp.dll) Version: 1.2.79.0 (1.2.79.0)
Syntax public DisplayChunk(
ushort x,
ushort y,
ushort width,
ushort height,
byte bitsPerPixel,
byte[] raster
)
Public Sub New (
x As UShort,
y As UShort,
width As UShort,
height As UShort,
bitsPerPixel As Byte,
raster As Byte()
)
public:
DisplayChunk(
unsigned short x,
unsigned short y,
unsigned short width,
unsigned short height,
unsigned char bitsPerPixel,
array<unsigned char>^ raster
)
new :
x : uint16 *
y : uint16 *
width : uint16 *
height : uint16 *
bitsPerPixel : byte *
raster : byte[] -> DisplayChunk
Parameters
- x
- Type: SystemUInt16
The horizontal location of the top left of the image in pixels. - y
- Type: SystemUInt16
The vertical location of the top left of the image in pixels. - width
- Type: SystemUInt16
he width of the image in pixels. - height
- Type: SystemUInt16
The height of the image in pixels. - bitsPerPixel
- Type: SystemByte
The number of bits per pixel the raster is encoded with. - raster
- Type: SystemByte
The raw raster to be transferred.
See Also