VerticalPosition module

class VerticalPosition.VerticalPosition(value)

Bases: Enum

Enum class for specifying the absolute vertical position.

none

Represents no vertical position.

Type:

int

Top

Represents the top vertical position.

Type:

int

Center

Represents the center vertical position.

Type:

int

Bottom

Represents the bottom vertical position.

Type:

int

Inside

Represents the inside vertical position.

Type:

int

Outside

Represents the outside vertical position.

Type:

int

Inline

Represents the inline vertical position.

Type:

int

Default

Represents the default vertical position.

Type:

int

Bottom = 3
Center = 2
Default = 0
Inline = -1
Inside = 4
Outside = 5
Top = 1
none = 0