ezLCD SDK Documentation

EZLCDBitmapEx.Item Property (EZLCDPointEx)

 [This is preliminary documentation and subject to change.]

Provides read/write access to the pixels in this bitmap as a single-dimensional array.

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

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

See Also

EZLCDBitmapEx Class | EZLCD.Core Namespace | EZLCDBitmapEx.EZLCDColorEx Overload List