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
}

Last updated