Class AxisKind

class ooodev.utils.kind.axis_kind.AxisKind(value)[source]

An enumeration.

static from_str(s)[source]

Gets an AxisKind instance from string.

Parameters:

s (str) – String that represents the name of an enum Name.

Raises:
  • ValueError – If input string is empty.

  • AttributeError – If unable to get AxisKind instance.

Returns:

Enum instance.

Return type:

AxisKind

X = 0

Represents X Axis

Y = 1

Represents Y Axis

Z = 2

Represents Z Axis