Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Documents / PagesChangedEventArgs.cs / 1 / PagesChangedEventArgs.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: PagesChangedEventArgs.cs // // Description: PagesChanged event. // // History: // 08/29/2005 : grzegorz - 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 : grzegorz - 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
- FormsAuthenticationEventArgs.cs
- HebrewNumber.cs
- EFTableProvider.cs
- ServiceRoute.cs
- TrackBarDesigner.cs
- TextEndOfParagraph.cs
- ConstraintCollection.cs
- EventHandlerService.cs
- DataGridBoolColumn.cs
- DesignerForm.cs
- TextEncodedRawTextWriter.cs
- SymbolEqualComparer.cs
- SemanticValue.cs
- SmiMetaData.cs
- XmlSchemaSimpleContent.cs
- connectionpool.cs
- DocumentPageTextView.cs
- ResourceExpressionEditorSheet.cs
- KeyValueSerializer.cs
- AuthenticationSection.cs
- DataGridViewRowsRemovedEventArgs.cs
- DoubleLinkList.cs
- PageRequestManager.cs
- TableItemStyle.cs
- PathNode.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- SplitterCancelEvent.cs
- SoapSchemaMember.cs
- precedingquery.cs
- DataGridViewCellStyleChangedEventArgs.cs
- SpecialNameAttribute.cs
- InvalidWMPVersionException.cs
- DataPointer.cs
- AnnotationResourceCollection.cs
- VBCodeProvider.cs
- ComponentCollection.cs
- DrawingServices.cs
- SourceLineInfo.cs
- MainMenu.cs
- DrawingCollection.cs
- XmlChoiceIdentifierAttribute.cs
- DataRowChangeEvent.cs
- DbCommandTree.cs
- CodeTypeReferenceExpression.cs
- SpotLight.cs
- ProcessHostServerConfig.cs
- x509utils.cs
- ObservableDictionary.cs
- JournalEntryStack.cs
- Models.cs
- xml.cs
- ConnectionPointCookie.cs
- PolyLineSegmentFigureLogic.cs
- SerialErrors.cs
- AsymmetricSignatureDeformatter.cs
- Int16Animation.cs
- OutputCacheModule.cs
- SizeFConverter.cs
- ServiceRoute.cs
- PointConverter.cs
- SqlConnectionPoolGroupProviderInfo.cs
- infer.cs
- ConditionalAttribute.cs
- WindowsToolbar.cs
- HttpWriter.cs
- DataTableNewRowEvent.cs
- FormsIdentity.cs
- Int16Storage.cs
- UIElement.cs
- BinaryObjectWriter.cs
- MethodRental.cs
- NativeMethods.cs
- SymbolType.cs
- TargetParameterCountException.cs
- DBSqlParserColumn.cs
- PeerMessageDispatcher.cs
- DataServices.cs
- RegistrySecurity.cs
- OleDbTransaction.cs
- EasingQuaternionKeyFrame.cs
- XmlDocument.cs
- PropertyItemInternal.cs
- HandleValueEditor.cs
- IPAddressCollection.cs
- MdiWindowListItemConverter.cs
- CacheSection.cs
- RelatedImageListAttribute.cs
- PlainXmlSerializer.cs
- ControlEvent.cs
- WebServiceReceiveDesigner.cs
- counter.cs
- SingleAnimation.cs
- RequiredAttributeAttribute.cs
- WebPartsPersonalization.cs
- CodePageEncoding.cs
- ListViewGroup.cs
- ComponentCommands.cs
- DesignerRegionMouseEventArgs.cs
- SqlEnums.cs
- JavaScriptString.cs