Table of Contents

Struct ScrollInfo

Structure representing the properties of a scroll bar.

Namespace: HP.LFT.SDK
Assembly: HP.LFT.SDK.dll
Syntax
public struct ScrollInfo

Properties

Exists

Indicates whether the scroll bar exists.

Declaration
public bool Exists { get; set; }
Property Value
Type Description
bool

Maximum

The maximum position (in lines) of the scroll bar.

Declaration
public int Maximum { get; set; }
Property Value
Type Description
int

Minimum

The minimum position (in lines) of the scroll bar.

Declaration
public int Minimum { get; set; }
Property Value
Type Description
int

PageSize

The size (in lines) of a single page of the scroll bar.

Declaration
public int PageSize { get; set; }
Property Value
Type Description
int

Position

The current position (in lines) of the scroll bar.

Declaration
public int Position { get; set; }
Property Value
Type Description
int

Methods

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
ValueType.ToString()