Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Documents / PagesChangedEventArgs.cs / 1305600 / PagesChangedEventArgs.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: PagesChangedEventArgs.cs // // Description: PagesChanged event. // // History: // 08/29/2005 : [....] - created. // //--------------------------------------------------------------------------- namespace System.Windows.Documents { ////// PagesChanged event handler. /// public delegate void PagesChangedEventHandler(object sender, PagesChangedEventArgs e); ////// Event arguments for the PagesChanged event. /// public class PagesChangedEventArgs : EventArgs { ////// Constructor. /// /// Zero-based page number for this first page that has changed. /// Number of continuous pages changed. public PagesChangedEventArgs(int start, int count) { _start = start; _count = count; } ////// Zero-based page number for this first page that has changed. /// public int Start { get { return _start; } } ////// Number of continuous pages changed. If the number of pages affected is /// unknown, then this value will be Integer.MaxValue. /// public int Count { get { return _count; } } ////// Zero-based page number for this first page that has changed. /// private readonly int _start; ////// Number of continuous pages changed. If the number of pages affected is /// unknown, then this value will be Integer.MaxValue. /// private readonly int _count; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: PagesChangedEventArgs.cs // // Description: PagesChanged event. // // History: // 08/29/2005 : [....] - created. // //--------------------------------------------------------------------------- namespace System.Windows.Documents { ////// PagesChanged event handler. /// public delegate void PagesChangedEventHandler(object sender, PagesChangedEventArgs e); ////// Event arguments for the PagesChanged event. /// public class PagesChangedEventArgs : EventArgs { ////// Constructor. /// /// Zero-based page number for this first page that has changed. /// Number of continuous pages changed. public PagesChangedEventArgs(int start, int count) { _start = start; _count = count; } ////// Zero-based page number for this first page that has changed. /// public int Start { get { return _start; } } ////// Number of continuous pages changed. If the number of pages affected is /// unknown, then this value will be Integer.MaxValue. /// public int Count { get { return _count; } } ////// Zero-based page number for this first page that has changed. /// private readonly int _start; ////// Number of continuous pages changed. If the number of pages affected is /// unknown, then this value will be Integer.MaxValue. /// private readonly int _count; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MethodRental.cs
- FixedPageProcessor.cs
- DateTimeHelper.cs
- XmlReader.cs
- PlainXmlSerializer.cs
- MachinePropertyVariants.cs
- ErrorStyle.cs
- HashJoinQueryOperatorEnumerator.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- SafeNativeMethods.cs
- SendActivity.cs
- Point3DConverter.cs
- ObjectListDesigner.cs
- StructuralType.cs
- BamlBinaryWriter.cs
- EntityCollectionChangedParams.cs
- EntityObject.cs
- TemplatedMailWebEventProvider.cs
- ProcessModelSection.cs
- DesignTimeParseData.cs
- StringConcat.cs
- TransactionValidationBehavior.cs
- DataMisalignedException.cs
- KeyTimeConverter.cs
- PrintingPermission.cs
- PenContexts.cs
- MethodToken.cs
- ProgressPage.cs
- BypassElementCollection.cs
- QilPatternFactory.cs
- ObjectParameterCollection.cs
- WebUtil.cs
- ObjectConverter.cs
- webeventbuffer.cs
- PerfService.cs
- TextTabProperties.cs
- PartialList.cs
- webclient.cs
- LogicalChannel.cs
- SmtpNtlmAuthenticationModule.cs
- DbXmlEnabledProviderManifest.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- XmlTypeMapping.cs
- TableLayout.cs
- DoubleLinkList.cs
- SmiConnection.cs
- WebServiceClientProxyGenerator.cs
- SimpleBitVector32.cs
- GlyphRun.cs
- TimeManager.cs
- XPathConvert.cs
- METAHEADER.cs
- OpenFileDialog.cs
- Properties.cs
- xdrvalidator.cs
- SupportingTokenDuplexChannel.cs
- RangeBase.cs
- JsonServiceDocumentSerializer.cs
- SystemResources.cs
- ExpressionPrefixAttribute.cs
- VisualTreeHelper.cs
- UInt16Storage.cs
- DashStyle.cs
- _ConnectionGroup.cs
- NodeFunctions.cs
- DefaultAutoFieldGenerator.cs
- Grid.cs
- AndCondition.cs
- EmptyImpersonationContext.cs
- ConsumerConnectionPoint.cs
- InputScope.cs
- WebPartMinimizeVerb.cs
- Effect.cs
- DefaultMemberAttribute.cs
- TextBreakpoint.cs
- XmlSchema.cs
- DesignerActionGlyph.cs
- Grammar.cs
- PropertyMapper.cs
- safemediahandle.cs
- CssTextWriter.cs
- DrawingImage.cs
- IResourceProvider.cs
- SafeSecurityHandles.cs
- ConstraintConverter.cs
- PagesSection.cs
- SmiEventSink_DeferedProcessing.cs
- PropertyTabAttribute.cs
- NamedPipeAppDomainProtocolHandler.cs
- Point.cs
- SiteMapProvider.cs
- RelationshipFixer.cs
- SecurityPolicySection.cs
- InstanceStoreQueryResult.cs
- Win32.cs
- XmlCodeExporter.cs
- SiteOfOriginPart.cs
- TextTreeTextNode.cs
- PerformanceCounterPermissionEntry.cs
- PersonalizableAttribute.cs