|
|
|
| acProcess object.
|
| type
|
| TacAppType =
|
| (atUnknown, // type not yet determined
|
| atVisibleWindows, // application with visible windows
|
| atHiddenWindows, // application with only hidden windows
|
| atExplorer, // Windows Explorer
|
| atNoWindows); // application with no windows
|
|
|
| property AppType: TacAppType; // read-only!
|
| The AppType determines the type of the application (whether it is GUI application with visible windows, hidden application, Explorer window, or just some system process).
|
|
|
| The application type can be one of following values:
|
| Value | Meaning
|
| atVisibleWindows | the application have one or more visible windows
|
| atHiddenWindows | all windows of the application are hidden
|
| atExplorer | the application is Windows Explorer
|
| atNoWindows | the application has no windows
|
| AppTypeName property.
|