画面の高さ (ピクセル)
Desktop application オブジェクト (PRIM_APPL) のメンバ
データ タイプ - 整数
The ScreenHeight and ScreenWidth properties return the resolution of the primary display
This example shows the screen resolution on the form titlebar.
Function Options(*DIRECT) Begin_Com Role(*EXTENDS #PRIM_FORM) Clientheight(172) Clientwidth(364) Height(211) Left(137) Top(198) Width(380) Evtroutine Handling(#com_owner.CreateInstance) #Com_owner.Caption := #sys_appln.ScreenWidth.ASstring + " x " + #sys_appln.ScreenHeight.ASstring Endroutine End_Com
2018 - V14SP1