Click or drag to resize

IMcCaptSettings Interface

Gives access to a capture settings object (McCaptSettings).

Namespace:  MediaCy.IQL.Capture
Assembly:  MediaCy.IQL.Capture (in MediaCy.IQL.Capture.dll) Version: 10.0.6912.0
Syntax
VB
Public Interface IMcCaptSettings
	Inherits IEnumerable

The IMcCaptSettings type exposes the following members.

Properties
  NameDescription
Public propertyContents
Gets or sets all of the settings as an XML formatted string.
Public propertyParent
Gets the parent capture device object of this capture settings object.
Top
Methods
  NameDescription
Public methodDelete
Delete a setting from the McCaptSettings object.
Public methodGet
Retrieve a settings value given its name (key).
Public methodGetEnumerator
Public methodImport
Imports settings from a legacy settings file.
Public methodLoad
Loads the McCaptSettings object from persistant storage.
Public methodSave
Saves the McCaptSettings object to persistant storage.
Public methodSet
Store a setting value in the McCaptSettings object.
Top
Remarks
Capture settings are the method to persist the state information of a capture device. All capture device attributes are automatically mapped as capture settings. In addition, clients can create their own capture settings that are stored along with the attributes, for example UI state information that will be persisted along with the device specific state info. Capture settings are persisted to a file on disk using the Load and Save methods. The settings are stored in an XML file format.
See Also