PhidgetTextLCD  | 
A class for controlling a PhidgetTextLCD. See your product manual for more specific API details, supported functionality, units, etc.
| PhidgetTextLCD | A class for controlling a PhidgetTextLCD. | 
| Constants | |
| Screen Sizes | These are the Screen sizes supported by the various PhidgetTextLCDs. | 
| Properties | |
| ScreenCount | Gets the number of screens available on the LCD. | 
| RowCount | Gets the number of rows available on the LCD. | 
| ColumnCount | Gets the number of columns available per row on the LCD. | 
| Backlight | Gets tha state of the backlight. | 
| Cursor | Gets the visible state of the cursor. | 
| CursorBlink | Gets the blinking state of the cursor. | 
| Contrast | Gets the last set contrast value. | 
| Brightness | Gets the last set brightness value. | 
| ScreenSize | Gets the screen size. | 
| Screen | Gets the active screen. | 
| Backlight | Sets the backlight state. | 
| Cursor | Sets the cursor (visible) state. | 
| CursorBlink | Sets the cursor blink state. | 
| Contrast | Sets the contrast (0-255). | 
| Brightness | Sets the brightness of the backlight (0-255). | 
| ScreenSize | Sets the screen size. | 
| Screen | Sets the active screen. | 
| Functions | |
| setDisplayString | Sets the display string for a row. | 
| setDisplayCharacter | Sets the character at a row and column. | 
| setCustomCharacter | Creates a custom character. | 
| initialize | Initializes a screen. | 
These are the Screen sizes supported by the various PhidgetTextLCDs. These constants are used with <getScreenSize> and <setScreenSize>.
Gets the number of screens available on the LCD.
public function get ScreenCount():int 
Gets the number of rows available on the LCD.
public function get RowCount():int 
Gets the number of columns available per row on the LCD.
public function get ColumnCount():int 
Gets tha state of the backlight.
public function get Backlight():Boolean 
Gets the visible state of the cursor.
public function get Cursor():Boolean 
Gets the blinking state of the cursor.
public function get CursorBlink():Boolean 
Gets the last set contrast value.
public function get Contrast():int 
Gets the last set brightness value.
public function get Brightness():int 
Gets the screen size.
public function get ScreenSize():int 
Gets the active screen.
public function get Screen():int 
Sets the display string for a row.
public function setDisplayString( index: int, val: String ):void 
Sets the character at a row and column.
public function setDisplayCharacter( row: int, column: int, val: String ):void 
Creates a custom character.
public function setCustomCharacter( index: int, val1: int, val2: int ):void 
Initializes a screen.
public function initialize():void