11 references to GraphicsUnit
System.Windows.Forms.Analyzers (2)
System\Windows\Forms\Analyzers\ApplicationConfig.FontDescriptor.cs (2)
13public FontDescriptor(string fontName, float emSize, FontStyle style, GraphicsUnit unit) 24public GraphicsUnit Unit { get; }
System.Windows.Forms.Analyzers.CSharp (9)
System\Windows\Forms\CSharp\Generators\ApplicationConfiguration\ProjectFileReader.FontConverter.cs (9)
36GraphicsUnit units = GraphicsUnit.Point; 119private static GraphicsUnit ParseGraphicsUnits(string units) => 125"doc" => GraphicsUnit.Document, 126"pt" => GraphicsUnit.Point, 127"in" => GraphicsUnit.Inch, 128"mm" => GraphicsUnit.Millimeter, 129"px" => GraphicsUnit.Pixel, 130"world" => GraphicsUnit.World,