<PackageReference Include="System.Drawing.Common" Version="9.0.6" />

QueryPageSettingsEventArgs

Provides data for the QueryPageSettings event.
using System.Runtime.CompilerServices; namespace System.Drawing.Printing { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] public class QueryPageSettingsEventArgs : PrintEventArgs { public PageSettings PageSettings { get { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } set { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } } public QueryPageSettingsEventArgs(PageSettings pageSettings) { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } } }