TrimRect

public struct TrimRect : XMLRepresentable

/// Defines the trim values of a crop adjustment.

  • The parameters associated with the trim rect.

    Declaration

    Swift

    public var parameters: [Parameter]
  • The left value of the trim rect.

    Declaration

    Swift

    public var left: Double
  • top

    The top value of the trim rect.

    Declaration

    Swift

    public var top: Double
  • The right value of the trim rect.

    Declaration

    Swift

    public var right: Double
  • The bottom value of the trim rect.

    Declaration

    Swift

    public var bottom: Double
  • Initializes a new trim rect.

    Declaration

    Swift

    public init(left: Double, top: Double, right: Double, bottom: Double)

    Parameters

    left

    The left value of the trim rect.

    top

    The top value of the trim rect.

    right

    The right value of the trim rect.

    bottom

    The bottom value of the trim rect.