ezLCD SDK Documentation

EZLCDBitmap.Item Property (Byte, Byte)

 [This is preliminary documentation and subject to change.]

Set or get the pixels in this bitmap as a two-dimensional array of elements.

[C#] In C#, this property is the indexer for the EZLCDBitmap class.

[Visual Basic]
Public Default Property Item( _ 
   ByVal Byte As Byte, _ 
   ByVal Byte As Byte _ 
) As 
[C#]
public EZLCDColor this[
   byte Byte,
   byte Byte
] { get; set; }
[C++]
public: __property  get_EZLCDColor(
   char Byte,
   char Byte
);
public: __property void set_EZLCDColor(
   char Byte,
   char Byte,
   EZLCDColor newValue
);
[JScript]
returnValue = EZLCDBitmapObject.Item( ByteByte );
EZLCDBitmapObject.Item( ByteByte ) = newValue;
-or-
returnValue = EZLCDBitmapObject( ByteByte );
EZLCDBitmapObject( ByteByte ) = newValue;

[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.

Parameters

x
The x position.
y
The y position.

See Also

EZLCDBitmap Class | EZLCD.Core Namespace | EZLCDBitmap.EZLCDColor Overload List