3 writes to PaperName
System.Drawing.Common.Tests (3)
System\Drawing\Printing\PaperSizeTests.cs (3)
136PaperName = value 141size.PaperName = value; 153AssertExtensions.Throws<ArgumentException>("value", null, () => size.PaperName = "name");
7 references to PaperName
System.Drawing.Common (1)
System\Drawing\Printing\PaperSize.cs (1)
119public override string ToString() => $"[PaperSize {PaperName} Kind={Kind} Height={Height.ToString(CultureInfo.InvariantCulture)} Width={Width.ToString(CultureInfo.InvariantCulture)}]";
System.Drawing.Common.Tests (6)
System\Drawing\Printing\PageSettingsTests.cs (2)
52Assert.Equal(ps.PaperSize.PaperName, clone.PaperSize.PaperName);
System\Drawing\Printing\PaperSizeTests.cs (4)
39Assert.Empty(size.PaperName); 53Assert.Equal(name, size.PaperName); 138Assert.Equal(value, size.PaperName); 142Assert.Equal(value, size.PaperName);