12 references to Name
System.Drawing.Common (5)
System\Drawing\Font.cs (2)
156string name = string.IsNullOrEmpty(OriginalFontName) ? Name : OriginalFontName; 255public override int GetHashCode() => HashCode.Combine(Name, Style, Size, Unit);
System\Drawing\FontConverter.cs (3)
36sb.AppendLiteral(font.Name); 110args[0] = font.Name; 399return props.Sort([nameof(Font.Name), nameof(Font.Size), nameof(Font.Unit)]);
System.Windows.Forms (7)
System\Windows\Forms\ActiveX\AxHost.cs (3)
3679fixed (char* n = font.Name) 3709: new(f.Name, f.SizeInPoints, f.Style, GraphicsUnit.Point, f.GdiCharSet, f.GdiVerticalFont); 3733fixed (char* n = font.Name)
System\Windows\Forms\ActiveX\Control.ActiveXFontMarshaler.cs (1)
35fixed (char* n = font.Name)
System\Windows\Forms\ComponentModel\COM2Interop\COM2FontConverter.cs (2)
113if (!source.Name.Equals(target->Name.ToStringAndFree())) 115target->Name = new(source.Name);
System\Windows\Forms\Help\Help.cs (1)
89string captionFont = $"{font.Name}, {font.SizeInPoints}, , {(font.Bold ? "BOLD" : "")}{(font.Italic ? "ITALIC" : "")}{(font.Underline ? "UNDERLINE" : "")}";