VideoFilter
public struct VideoFilter : XMLRepresentable
Undocumented
-
The data associated with the video filter.
Declaration
Swift
public var data: KeyedData?
-
The parameters associated with the video filter.
Declaration
Swift
public var parameters: [Parameter]
-
The identifier of the
Effect
resource referenced by this video filter.Declaration
Swift
public let effectID: String
-
The name of the video filter.
Declaration
Swift
public var name: String?
-
A Boolean value indicating whether the video filter is enabled.
Declaration
Swift
public var isEnabled: Bool { get set }
-
Initializes a new video filter.
Declaration
Swift
public init(effectID: String, name: String? = nil)
Parameters
effectID
The identifier of the
Effect
resource referenced by this video filter.name
The name of the video filter.