Table of Contents

TSpinProperties.Create Method

Overloads

TSpinProperties.Create

Creates an empty TSpinProperties instance.

Syntax

Unit: FlexCel.Core

class function TSpinProperties.Create: TSpinProperties; static; overload;

See also

TSpinProperties.Create(Integer, Integer, Integer, Integer)

Creates a new instance with data and a default dx of 16.

Syntax

Unit: FlexCel.Core

class function TSpinProperties.Create(const aMin: Integer; const aMax: Integer; const aIncr: Integer; const aPage: Integer): TSpinProperties; static; overload;

Parameters

<-> Parameter Type Description
const aMin Integer Minimum value for the spin control.
const aMax Integer Maximum value for the spin control.
const aIncr Integer Small increment.
const aPage Integer Big increment.

See also

TSpinProperties.Create(Integer, Integer, Integer, Integer, Integer)

Creates a new instance with data.

Syntax

Unit: FlexCel.Core

class function TSpinProperties.Create(const aMin: Integer; const aMax: Integer; const aIncr: Integer; const aPage: Integer; const aDx: Integer): TSpinProperties; static; overload;

Parameters

<-> Parameter Type Description
const aMin Integer Minimum value for the spin control.
const aMax Integer Maximum value for the spin control.
const aIncr Integer Small increment.
const aPage Integer Big increment.
const aDx Integer Width of the scrollbar. It should normally be 16.

See also

TSpinProperties.Create(Integer, Integer, Integer, Integer, Integer, Boolean)

Creates a new instance with data.

Syntax

Unit: FlexCel.Core

class function TSpinProperties.Create(const aMin: Integer; const aMax: Integer; const aIncr: Integer; const aPage: Integer; const aDx: Integer; const aHorizontal: Boolean): TSpinProperties; static; overload;

Parameters

<-> Parameter Type Description
const aMin Integer Minimum value for the spin control.
const aMax Integer Maximum value for the spin control.
const aIncr Integer Small increment.
const aPage Integer Big increment.
const aDx Integer Width of the scrollbar. It should normally be 16.
const aHorizontal Boolean If true, the spin control will be oriented horizontally.

See also