Advertisement
TLama

Untitled

Oct 6th, 2013
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.25 KB | None | 0 0
  1. var
  2.   ScreenSize: TPointF;
  3.   ScreenService: IFMXScreenService;
  4. begin
  5.   if TPlatformServices.Current.SupportsPlatformService(IFMXScreenService, IInterface(ScreenService)) then
  6.   begin
  7.     ScreenSize := ScreenService.GetScreenSize;
  8.     ...
  9.   end;
  10. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement