![]() |
![]() ![]() ![]() |
acProcess object.
|
property SystemIcon16Handle: hIcon; // read-only!
|
The SystemIcon32Handle determines the handle of the 32x32 icon of the application process.
|
// Demonstrates how to assign the handle to icon object and display it in the TImage component
|
procedure TForm1.ListView1SelectItem(Sender: TObject; Item: TListItem;
|
Selected: Boolean);
|
begin
|
if Item <> nil then
|
Image1.Picture.Icon.Handle := TacProcess(Item.Data).SystemIcon32Handle;
|
end;
|
SystemIconIndex and SystemIcon16Handle properties;
|
acSystemImageList component.
|