property CascadeFile.Get (Type as TypeEnum) as Variant
Gets the list of files (selected, checked, visible, ...) as a safe array of VARIANT.

TypeDescription
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 Get method returns all, visible, selected or checked files. Use the HasCheckBox property to assign a check box for each item in your control. Use the Get method to retrieve :

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());