HorizontalAlign
@objc public enum HorizontalAlign: Int, Equatable {
/// Align the banner to the leading edge of the placement view
case leading
/// Align the banner to the trailing edge of the placement view
case trailing
/// Align the banner to the center of the placement view
case center
}
typedef SWIFT_ENUM(NSInteger, HorizontalAlign, open) {
/// Align the banner to the leading edge of the placement view
HorizontalAlignLeading = 0,
/// Align the banner to the trailing edge of the placement view
HorizontalAlignTrailing = 1,
/// Align the banner to the center of the placement view
HorizontalAlignCenter = 2,
};
Last updated