ezLCD SDK Documentation

EZLCDBitmap.Item Property (EZLCDPoint)

 [This is preliminary documentation and subject to change.]

Set or get the pixels in this bitmap as an array of elements.

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

[Visual Basic]
Public Default Property Item( _ 
   ByVal EZLCDPoint As EZLCDPoint _ 
) As 
[C#]
public EZLCDColor this[
   EZLCDPoint EZLCDPoint
] { get; set; }
[C++]
public: __property  get_EZLCDColor(
   EZLCDPoint EZLCDPoint
);
public: __property void set_EZLCDColor(
   EZLCDPoint EZLCDPoint,
   EZLCDColor newValue
);
[JScript]
returnValue = EZLCDBitmapObject.Item( EZLCDPoint );
EZLCDBitmapObject.Item( EZLCDPoint ) = newValue;
-or-
returnValue = EZLCDBitmapObject( EZLCDPoint );
EZLCDBitmapObject( EZLCDPoint ) = 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

location
The location of the pixel to set/get.

See Also

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