enum

CrImage::Util::HorizontalAlignment

Inherits Enum / Comparable / Value / Object

Horizontal alignment for vertical stacking.

Controls how images of different widths are aligned when stacked vertically:

  • Left : Align to left edge
  • Center : Center horizontally
  • Right : Align to right edge

Constants

Left = 0
Center = 1
Right = 2

Instance methods

center?

Returns true if this enum value equals Center

Source
left?

Returns true if this enum value equals Left

Source
right?

Returns true if this enum value equals Right

Source