UnbluCoBrowsingPrivateArea

public class UnbluCoBrowsingPrivateArea

An object that represents an area of the screen that will be obscured during a co-browsing session

  • id

    The id of this private area

    Declaration

    Swift

    public let id: String
  • The CGRect object that defines the absolute on screen position of the area to obscure

    Declaration

    Swift

    public var rect: CGRect { get }
  • Updates the size and position of the private area to render in on the screen.

    Declaration

    Swift

    public func update(x: CGFloat? = nil, y: CGFloat? = nil, width: CGFloat? = nil, height: CGFloat? = nil)

    Parameters

    x

    The new absolute x position of the private area on the screen (optional)

    y

    The new absolute y position of the private area on the screen (optional)

    width

    The new width of the private area on the screen (optional)

    height

    The new width of the private area on the screen (optional)