Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Documents / PaginationProgressEventArgs.cs / 1305600 / PaginationProgressEventArgs.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: PaginationProgressEventArgs.cs // // Description: PaginationProgress event. // // History: // 08/29/2005 : [....] - created. // //--------------------------------------------------------------------------- namespace System.Windows.Documents { ////// PaginationProgress event handler. /// public delegate void PaginationProgressEventHandler(object sender, PaginationProgressEventArgs e); ////// Event arguments for the PaginationProgress event. /// public class PaginationProgressEventArgs : EventArgs { ////// Constructor. /// /// Zero-based page number for this first page that has been paginated. /// Number of continuous pages paginated. public PaginationProgressEventArgs(int start, int count) { _start = start; _count = count; } ////// Zero-based page number for this first page that has been paginated. /// public int Start { get { return _start; } } ////// Number of continuous pages paginated. /// public int Count { get { return _count; } } ////// Zero-based page number for this first page that has been paginated. /// private readonly int _start; ////// Number of continuous pages paginated. /// 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: PaginationProgressEventArgs.cs // // Description: PaginationProgress event. // // History: // 08/29/2005 : [....] - created. // //--------------------------------------------------------------------------- namespace System.Windows.Documents { ////// PaginationProgress event handler. /// public delegate void PaginationProgressEventHandler(object sender, PaginationProgressEventArgs e); ////// Event arguments for the PaginationProgress event. /// public class PaginationProgressEventArgs : EventArgs { ////// Constructor. /// /// Zero-based page number for this first page that has been paginated. /// Number of continuous pages paginated. public PaginationProgressEventArgs(int start, int count) { _start = start; _count = count; } ////// Zero-based page number for this first page that has been paginated. /// public int Start { get { return _start; } } ////// Number of continuous pages paginated. /// public int Count { get { return _count; } } ////// Zero-based page number for this first page that has been paginated. /// private readonly int _start; ////// Number of continuous pages paginated. /// 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
- ExpressionEditorAttribute.cs
- TemplateContainer.cs
- InfoCardSymmetricAlgorithm.cs
- DefaultIfEmptyQueryOperator.cs
- BackEase.cs
- HttpRuntime.cs
- BrowserCapabilitiesCodeGenerator.cs
- FrameworkElement.cs
- documentsequencetextview.cs
- XmlArrayItemAttributes.cs
- DateTimeConverter.cs
- DocumentGridPage.cs
- CatalogPartCollection.cs
- MasterPageCodeDomTreeGenerator.cs
- RecordsAffectedEventArgs.cs
- COM2ComponentEditor.cs
- WebPartConnectionsEventArgs.cs
- SourceLocationProvider.cs
- SchemeSettingElementCollection.cs
- SqlNotificationRequest.cs
- MultiPartWriter.cs
- ChineseLunisolarCalendar.cs
- BuildResult.cs
- ClientTargetCollection.cs
- QueryExpression.cs
- WebEncodingValidator.cs
- XmlNodeComparer.cs
- DateTimeConverter.cs
- MenuTracker.cs
- PrimarySelectionGlyph.cs
- ModelFunctionTypeElement.cs
- CustomExpressionEventArgs.cs
- BindingListCollectionView.cs
- CellQuery.cs
- XmlSchemaFacet.cs
- ClientSponsor.cs
- Context.cs
- ActivityTypeResolver.xaml.cs
- MultiSelectRootGridEntry.cs
- VirtualDirectoryMappingCollection.cs
- GridProviderWrapper.cs
- ServiceHttpModule.cs
- IdentitySection.cs
- Triangle.cs
- AssociationSetMetadata.cs
- OleDbParameter.cs
- RelationshipSet.cs
- DocumentSchemaValidator.cs
- FileLoadException.cs
- TableColumn.cs
- UIElement3D.cs
- ProtocolsInstallComponent.cs
- TargetConverter.cs
- MarshalByValueComponent.cs
- ToolboxItemImageConverter.cs
- RowUpdatingEventArgs.cs
- BindingExpressionUncommonField.cs
- BaseTemplateCodeDomTreeGenerator.cs
- RemotingAttributes.cs
- TextComposition.cs
- EventLogPermissionEntry.cs
- SystemSounds.cs
- PassportAuthentication.cs
- SafeNativeMethodsOther.cs
- EntityDataSourceDataSelection.cs
- NumericUpDown.cs
- MouseButtonEventArgs.cs
- DataSourceView.cs
- TextParagraphCache.cs
- WmpBitmapEncoder.cs
- PrintingPermissionAttribute.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- AlgoModule.cs
- NameHandler.cs
- ClientConvert.cs
- Win32.cs
- CodeNamespaceCollection.cs
- LifetimeMonitor.cs
- OracleConnectionFactory.cs
- InlineObject.cs
- TextServicesPropertyRanges.cs
- QueryStringParameter.cs
- IdnElement.cs
- DataGridColumnReorderingEventArgs.cs
- ObjectStateEntry.cs
- ErrorWrapper.cs
- AvTrace.cs
- WebConfigurationHost.cs
- TabletDevice.cs
- DataBoundControlAdapter.cs
- CodeDirectionExpression.cs
- StorageFunctionMapping.cs
- RuleProcessor.cs
- CopyOfAction.cs
- AppSecurityManager.cs
- ButtonChrome.cs
- ParameterBinding.cs
- Rotation3D.cs
- ConfigXmlElement.cs
- RowToFieldTransformer.cs