MARGINS.cs 186 B

1234567891011121314
  1. using System;
  2. namespace Standard;
  3. internal struct MARGINS
  4. {
  5. public int cxLeftWidth;
  6. public int cxRightWidth;
  7. public int cyTopHeight;
  8. public int cyBottomHeight;
  9. }