←構造体一覧に戻る

MARGINS 構造体

GetThemeMargins 関数で使われる、ビジュアルスタイルが適用されたウィンドウの余白を定義します。

構造体の大きさ(byte):16
typedef struct _MARGINS {
  int cxLeftWidth;
  int cxRightWidth;
  int cyTopHeight;
  int cyBottomHeight;
} MARGINS, *PMARGINS;

メンバ


cxLeftWidth
左枠の幅。

cxRightWidth
右枠の幅。

cyTopHeight
上端の高さ。

cyBottomHeight
下端の高さ。


HSPでの構造体


配列の添え字対応するメンバ名オフセット (byte)サイズ (byte)
margins(0)cxLeftWidth04
margins(1)cxRightWidth44
margins(2)cyTopHeight84
margins(3)cyBottomHeight124




(C)2019 inonote / 無断転載禁止