enum

CrImage::Util::VerticalAlignment

Inherits Enum / Comparable / Value / Object

Vertical alignment for horizontal stacking.

Controls how images of different heights are aligned when stacked horizontally:

  • Top : Align to top edge
  • Center : Center vertically
  • Bottom : Align to bottom edge

Constants

Top = 0
Center = 1
Bottom = 2

Instance methods

bottom?

Returns true if this enum value equals Bottom

Source
center?

Returns true if this enum value equals Center

Source
top?

Returns true if this enum value equals Top

Source