Table of Contents

Interface IStatusBarItem

A single status bar item in a standard Windows status bar.

Namespace: HP.LFT.SDK.StdWin
Assembly: HP.LFT.SDK.dll
Syntax
public interface IStatusBarItem

Properties

Height

The height of the status bar item (in pixels).

Declaration
int Height { get; }
Property Value
Type Description
int

Text

The text of the status bar item, or "" when empty.

Declaration
string Text { get; }
Property Value
Type Description
string

Width

The width of the status bar item (in pixels).

Declaration
int Width { get; }
Property Value
Type Description
int

X

The status bar's x-coordinate (left) relative to the parent window (in pixels).

Declaration
int X { get; }
Property Value
Type Description
int

Y

The status bar's y-coordinate (top) relative to the parent window (in pixels).

Declaration
int Y { get; }
Property Value
Type Description
int