Click or drag to resize

IMcImageSetsAdd Method

Method to add a new McImageSet to the collection.

Namespace:  MediaCy.IQL.Sets
Assembly:  MediaCy.IQL.Sets (in MediaCy.IQL.Sets.dll) Version: 10.0.6912.0
Syntax
VB
Function Add ( 
	SetName As String
) As McImageSet

Parameters

SetName
Type: SystemString
set name to add pNew: Returns the new set object

Return Value

Type: McImageSet
Remarks
The McImageSet object is created by the Add method, and is returned to the caller. To create a McImageSet that is not part of a McImageSets collection, use the McEngine.CreateOperator method as shown in the example.
Examples
VB
'Create a McImageSet that is not part of a McImageSets collection
Dim myGlobalImageSet As McImageSet
Set myGlobalImageSet = CreateOperator("McImageSet") 'no parent and no name
See Also