■ 화면 픽셀 크기를 구하는 방법을 보여준다.
▶ 예제 코드 (VB)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
Public Function GetScreenWidth() As Integer GetScreenWidth = Screen.Width / Screen.TwipsPerPixelX ' 화면 너비(트윕 단위) / 픽셀당 트윕 수 X End Function Public Function GetScreenHeight() As Integer GetScreenHeight = Screen.Height / Screen.TwipsPerPixelY ' 화면 높이(트윕 단위) / 픽셀당 트윕 수 Y End Function |