Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CommonUI / System / Drawing / Printing / PrintPageEvent.cs / 1 / PrintPageEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing.Printing { using System.Diagnostics; using System; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; ////// /// // NOTE: Please keep this class consistent with PaintEventArgs. public class PrintPageEventArgs : EventArgs { private bool hasMorePages; private bool cancel; private Graphics graphics; private readonly Rectangle marginBounds; private readonly Rectangle pageBounds; private readonly PageSettings pageSettings; ///Provides data for the ////// event. /// /// public PrintPageEventArgs(Graphics graphics, Rectangle marginBounds, Rectangle pageBounds, PageSettings pageSettings) { this.graphics = graphics; // may be null, see PrintController this.marginBounds = marginBounds; this.pageBounds = pageBounds; this.pageSettings = pageSettings; } ///Initializes a new instance of the ///class. /// /// public bool Cancel { get { return cancel;} set { cancel = value;} } ///Gets or sets a value indicating whether the print job should be canceled. ////// /// public Graphics Graphics { get { return graphics; } } ////// Gets the ////// used to paint the /// item. /// /// /// public bool HasMorePages { get { return hasMorePages;} set { hasMorePages = value;} } ///Gets or sets a value indicating whether an additional page should /// be printed. ////// /// public Rectangle MarginBounds { get { return marginBounds; } } ///Gets the rectangular area that represents the portion of the page between the margins. ////// /// public Rectangle PageBounds { get { return pageBounds; } } ////// Gets the rectangular area that represents the total area of the page. /// ////// /// public PageSettings PageSettings { get { return pageSettings; } } ///Gets /// the page settings for the current page. ////// /// // We want a way to dispose the GDI+ Graphics, but we don't want to create one // simply to dispose it internal void Dispose() { graphics.Dispose(); } internal void SetGraphics(Graphics value) { this.graphics = value; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Disposes /// of the resources (other than memory) used by /// the ///. // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing.Printing { using System.Diagnostics; using System; using System.Drawing; using System.ComponentModel; using Microsoft.Win32; ////// /// // NOTE: Please keep this class consistent with PaintEventArgs. public class PrintPageEventArgs : EventArgs { private bool hasMorePages; private bool cancel; private Graphics graphics; private readonly Rectangle marginBounds; private readonly Rectangle pageBounds; private readonly PageSettings pageSettings; ///Provides data for the ////// event. /// /// public PrintPageEventArgs(Graphics graphics, Rectangle marginBounds, Rectangle pageBounds, PageSettings pageSettings) { this.graphics = graphics; // may be null, see PrintController this.marginBounds = marginBounds; this.pageBounds = pageBounds; this.pageSettings = pageSettings; } ///Initializes a new instance of the ///class. /// /// public bool Cancel { get { return cancel;} set { cancel = value;} } ///Gets or sets a value indicating whether the print job should be canceled. ////// /// public Graphics Graphics { get { return graphics; } } ////// Gets the ////// used to paint the /// item. /// /// /// public bool HasMorePages { get { return hasMorePages;} set { hasMorePages = value;} } ///Gets or sets a value indicating whether an additional page should /// be printed. ////// /// public Rectangle MarginBounds { get { return marginBounds; } } ///Gets the rectangular area that represents the portion of the page between the margins. ////// /// public Rectangle PageBounds { get { return pageBounds; } } ////// Gets the rectangular area that represents the total area of the page. /// ////// /// public PageSettings PageSettings { get { return pageSettings; } } ///Gets /// the page settings for the current page. ////// /// // We want a way to dispose the GDI+ Graphics, but we don't want to create one // simply to dispose it internal void Dispose() { graphics.Dispose(); } internal void SetGraphics(Graphics value) { this.graphics = value; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Disposes /// of the resources (other than memory) used by /// the ///.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HtmlMeta.cs
- Quaternion.cs
- BuildResult.cs
- TablePattern.cs
- dbdatarecord.cs
- HtmlElementErrorEventArgs.cs
- DataFormats.cs
- RangeValuePattern.cs
- GridViewPageEventArgs.cs
- MDIClient.cs
- XamlInt32CollectionSerializer.cs
- EntityDesignerUtils.cs
- MethodSet.cs
- TemplatePartAttribute.cs
- WindowHideOrCloseTracker.cs
- HtmlMeta.cs
- Literal.cs
- XmlSchemaIdentityConstraint.cs
- XmlDeclaration.cs
- FileCodeGroup.cs
- QueryRelOp.cs
- EncryptedReference.cs
- WindowCollection.cs
- CodeEntryPointMethod.cs
- StringValidatorAttribute.cs
- ListControlConvertEventArgs.cs
- ClientCredentials.cs
- DataGridViewRowStateChangedEventArgs.cs
- WindowsGraphics2.cs
- HtmlInputImage.cs
- RtfToXamlReader.cs
- DBConcurrencyException.cs
- TraceSection.cs
- DefinitionUpdate.cs
- DesignerHierarchicalDataSourceView.cs
- HtmlElementErrorEventArgs.cs
- ProjectionCamera.cs
- CounterCreationDataConverter.cs
- WebOperationContext.cs
- TypeBrowser.xaml.cs
- Matrix3DStack.cs
- WindowsPen.cs
- DPTypeDescriptorContext.cs
- SafeBitVector32.cs
- JavascriptCallbackResponseProperty.cs
- XmlAtomicValue.cs
- DetailsViewDeletedEventArgs.cs
- basenumberconverter.cs
- EndOfStreamException.cs
- OleDbPermission.cs
- DoubleLinkListEnumerator.cs
- PropVariant.cs
- ElementHost.cs
- RequestTimeoutManager.cs
- MissingMethodException.cs
- ParallelDesigner.cs
- ProgressBar.cs
- XPathNavigatorKeyComparer.cs
- XmlSchemaAnyAttribute.cs
- MailWriter.cs
- ContainerCodeDomSerializer.cs
- KnownIds.cs
- OracleSqlParser.cs
- ParameterCollection.cs
- DataObjectAttribute.cs
- Guid.cs
- _LocalDataStore.cs
- PolyLineSegment.cs
- TypeDescriptionProvider.cs
- ComponentResourceKeyConverter.cs
- ImageButton.cs
- FilterableAttribute.cs
- XmlSchemaAttribute.cs
- EnumType.cs
- EncoderBestFitFallback.cs
- ToolstripProfessionalRenderer.cs
- ActivityIdHeader.cs
- CDSCollectionETWBCLProvider.cs
- DesignerView.cs
- Sql8ExpressionRewriter.cs
- HtmlInputHidden.cs
- BackgroundWorker.cs
- ArrangedElementCollection.cs
- DataGridItem.cs
- ChannelManager.cs
- FixedFindEngine.cs
- UdpTransportSettingsElement.cs
- EtwTrace.cs
- TextWriter.cs
- HtmlProps.cs
- Typeface.cs
- SafeCoTaskMem.cs
- TableCellCollection.cs
- DiffuseMaterial.cs
- FactoryGenerator.cs
- XmlQueryContext.cs
- Rule.cs
- StateElement.cs
- WsiProfilesElementCollection.cs
- BitmapSourceSafeMILHandle.cs