画面の幅 (ピクセル)
Desktop application オブジェクト (PRIM_APPL) のメンバ
データ タイプ - 整数
ScreenWidthプロパティと ScreenHeight プロパティは、プライマリディスプレイの解像度を返します。
この例は、フォームタイトルバーの画面解像度を示しています。
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