DocumentCoBrowsingPresentationMode

public enum DocumentCoBrowsingPresentationMode : Equatable

Defines how the document co-browsing UI should be presented.

  • Use the default SDK-provided document co-browsing UI.

    Declaration

    Swift

    case `default`
  • Use a custom UI provided by the implementer.

    Declaration

    Swift

    case custom((_ completion: @escaping (Bool) -> Void) -> Void)

    Parameters

    completion

    A closure that should be called with true if the presentation was successful, or false otherwise.

  • Declaration

    Swift

    public static func == (lhs: DocumentCoBrowsingPresentationMode, rhs: DocumentCoBrowsingPresentationMode) -> Bool