Type | Description | |||
Type as TypeEnum | A TypeEnum expression that indicates the type of files to retrieve | |||
Variant | A safe array of VARIANT that includes the files |
The following VB sample enumerates the files being checked:
Dim f For Each f In CascadeFile1.Get(CheckItems) Debug.Print f Next
The following VB/NET sample enumerates the files being checked:
For Each f In Excascadefile1.get_Get(exontrol.EXMILLERLib.TypeEnum.CheckItems) Debug.Print(f) Next
The following C# sample enumerates the files being checked:
foreach (var file in excascadefile1.get_Get(exontrol.EXMILLERLib.TypeEnum.CheckItems)) System.Diagnostics.Debug.Print(file.ToString());