Thema
:
Clipboard Size
Einzelnen Beitrag anzeigen
tomkupitz
Registriert seit: 26. Jan 2011
341 Beiträge
Delphi 12 Athens
#
2
AW: Clipboard Size
27. Mai 2021, 12:37
Zunächst mal die Größe:
markieren
Code:
function GetClipBrdDataSize(hWnd: THandle; ClipBrdFormat: Integer): DWord;
var hClipMem: THandle;
begin
result:=0;
if not OpenClipBoard(hWnd) then
Exit;
if IsClipBoardFormatAvailable(ClipBrdFormat) then
begin
hClipMem:=GetClipBoardData(ClipBrdFormat);
result:=GlobalSize(hClipMem);
end;
CloseClipBoard;
end;
Zitat
tomkupitz
Öffentliches Profil ansehen
Mehr Beiträge von tomkupitz finden