processlist Description property
Return to Introduction  Previous page  Next page
Applies to
acProcess object.  

Declaration
property Description: String; // read-only!  

Description
The Description property is the string which represents the description of the application, retrieved from the header of its executable file. If the file does not contains any description (i.e: 'Windows Executable' file does not contains version information), property returns the name of executable (see also ExeName).  

Example // shows the description of first process available in the list
procedure TForm1.acButton1Click(Sender: TObject);  
begin  
  Label1.Caption := acProcessList1.Items[0].Description;  
end;  

See also
ExeName property.