Get the list of active windows
Namespace: Facilita.Fc.CitrixAssembly: fcCitrix (in fcCitrix.dll) Version: 9.5.7.98
Syntax
Field Value
a list of the active windows within the Citrix sessionRemarks
Examples
WriteMessage("ActiveWindows count = " + ActiveWindows.Count.ToString()); foreach (WFICALib.IWindow window in this.ActiveWindows) { if (window.Caption.Contains("2012")) { WriteMessage("found: " + window.Caption); break; } }
See Also