Enumerationmigueldeicaza.swiftgodot 0.45.0SwiftGodot
InlineAlignment
core-defs.swift:125enum InlineAlignment
Cases
case centerTo
Aligns the center of the inline object (e.g. image, table) to the position of the text specified by
INLINE_ALIGNMENT_TO_*
constant.case baselineTo
Aligns the baseline (user defined) of the inline object (e.g. image, table) to the position of the text specified by
INLINE_ALIGNMENT_TO_*
constant.case bottomTo
Aligns the bottom of the inline object (e.g. image, table) to the position of the text specified by
INLINE_ALIGNMENT_TO_*
constant.case toCenter
Aligns the position of the inline object (e.g. image, table) specified by
INLINE_ALIGNMENT_*_TO
constant to the center of the text.case toBaseline
Aligns the position of the inline object (e.g. image, table) specified by
INLINE_ALIGNMENT_*_TO
constant to the baseline of the text.case toBottom
Aligns inline object (e.g. image, table) to the bottom of the text.
case top
Aligns top of the inline object (e.g. image, table) to the top of the text. Equivalent to
INLINE_ALIGNMENT_TOP_TO | INLINE_ALIGNMENT_TO_TOP
.case center
Aligns center of the inline object (e.g. image, table) to the center of the text. Equivalent to
INLINE_ALIGNMENT_CENTER_TO | INLINE_ALIGNMENT_TO_CENTER
.case bottom
Aligns bottom of the inline object (e.g. image, table) to the bottom of the text. Equivalent to
INLINE_ALIGNMENT_BOTTOM_TO | INLINE_ALIGNMENT_TO_BOTTOM
.
Citizens in SwiftGodot
Conformances
protocol CaseIterable
A type that provides a collection of all of its values.
protocol CustomDebugStringConvertible
A type with a customized textual representation suitable for debugging purposes.
protocol Equatable
A type that can be compared for value equality.
protocol Hashable
A type that can be hashed into a
Hasher
to produce an integer hash value.protocol RawRepresentable<RawValue>
A type that can be converted to and from an associated raw value.
Type members
Instance members
var debugDescription: String
A textual representation of this instance, suitable for debugging
Type features
static func != (lhs: Self, rhs: Self
) -> Bool Returns a Boolean value indicating whether two values are not equal.