![]() |
![]() ![]() ![]() |
acProcessList component.
|
type
|
TacProcesses = class(TacObjectList)
|
public
|
function FindProcessByPID(PID: DWord; MultiPass: Boolean = True): TacProcess;
|
function FindProcessByWnd(Wnd: hWnd; MultiPass: Boolean = True): TacProcess;
|
function FindExeNameByPID(PID: DWord): String;
|
function FindExeNameByWnd(Wnd: hWnd): String;
|
function FindDescriptionByPID(PID: DWord): String;
|
function FindDescriptionByWnd(Wnd: hWnd): String;
|
function FindWindowTitleByPID(PID: DWord): String;
|
function FindWindowTitleByWnd(Wnd: hWnd): String;
|
|
procedure ExportToListView(ListView: TCustomListView);
|
procedure Refresh;
|
|
property Items[Index: Integer]: TacProcess read Get; default;
|
end;
|
|
property ProcessList: TacProcesses;
|
The ProcessList is the internal list which contains the information about each system process.
|
|
![]() |
|
![]() |
TacProcess object;
|
Refresh method.
|