Sets or returns a boolean that represents whether or not Word will use printer metrics to lay out this document.

public boolean UsePrinterMetrics{ get; set; }
Public Property UsePrinterMetrics() As Boolean

MS Word equivalent: Tools menu > Options... > Compatibility tab > Compatibility options for [filename].doc section > Options > Use printer metric to lay out document

          //--- Return UsePrinterMetrics
          bool usePrinterMetrics = cs.UsePrinterMetrics;

          //--- Set UsePrinterMetrics
          cs.UsePrinterMetrics = true;
        
          '--- Return UsePrinterMetrics
          Dim usePrinterMetrics As Boolean = oCompatibilitySettings.UsePrinterMetrics

          '--- Set UsePrinterMetrics
          cs.UsePrinterMetrics = True