TextOffset

public struct TextOffset : Equatable

TextOffset represented by two points.

Lifecycle

  • TextOffset init method.

    Declaration

    Swift

    public init(x: Double, y: Double)

    Parameters

    x

    The x-axis offset in points.

    y

    The y-axis offset in points.

Public

  • x

    The x-axis offset in points.

    Declaration

    Swift

    public var x: Double
  • y

    The y-axis offset in points.

    Declaration

    Swift

    public var y: Double