Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AdditionalEntityFunctions.cs
- PathGeometry.cs
- BaseParser.cs
- CorrelationInitializer.cs
- UIElement.cs
- SqlExpressionNullability.cs
- CompressStream.cs
- XmlNotation.cs
- WebServiceResponse.cs
- PowerModeChangedEventArgs.cs
- DiscardableAttribute.cs
- EnvironmentPermission.cs
- DefaultSettingsSection.cs
- DetailsViewCommandEventArgs.cs
- EditableRegion.cs
- Literal.cs
- ParameterCollection.cs
- TranslateTransform.cs
- IBuiltInEvidence.cs
- PermissionSetEnumerator.cs
- InputProcessorProfiles.cs
- SizeAnimation.cs
- NotFiniteNumberException.cs
- ListSourceHelper.cs
- IRCollection.cs
- CardSpaceException.cs
- DataGridViewIntLinkedList.cs
- AffineTransform3D.cs
- StyleModeStack.cs
- Config.cs
- SignatureToken.cs
- __Error.cs
- BitmapEffectDrawingContextState.cs
- ConfigUtil.cs
- RemoteX509Token.cs
- QilReplaceVisitor.cs
- LicenseException.cs
- ChunkedMemoryStream.cs
- Cursors.cs
- TrackBarRenderer.cs
- PolicyLevel.cs
- SQLBinary.cs
- HMACSHA1.cs
- SwitchLevelAttribute.cs
- MulticastDelegate.cs
- HostExecutionContextManager.cs
- Int32Converter.cs
- TextBox.cs
- UpdateCompiler.cs
- ASCIIEncoding.cs
- DocumentAutomationPeer.cs
- CheckBox.cs
- Action.cs
- TerminatorSinks.cs
- ApplicationManager.cs
- SqlFormatter.cs
- XmlNodeChangedEventManager.cs
- ellipse.cs
- TagMapCollection.cs
- JpegBitmapDecoder.cs
- ArglessEventHandlerProxy.cs
- EntityContainerEmitter.cs
- StructuralType.cs
- MaterialCollection.cs
- SqlSelectStatement.cs
- AuthenticateEventArgs.cs
- ReferenceConverter.cs
- XmlQualifiedName.cs
- RuleSettingsCollection.cs
- HtmlShim.cs
- XmlSchemaProviderAttribute.cs
- WebBrowserEvent.cs
- SafeRsaProviderHandle.cs
- TaskDesigner.cs
- QueryOperationResponseOfT.cs
- WindowsImpersonationContext.cs
- AutomationAttributeInfo.cs
- BuildProvider.cs
- dsa.cs
- KnownTypes.cs
- WindowPattern.cs
- SemanticResultKey.cs
- TextUtf8RawTextWriter.cs
- DataServiceBuildProvider.cs
- DbConnectionStringBuilder.cs
- TypeSchema.cs
- RightsManagementManager.cs
- LocalFileSettingsProvider.cs
- ToolBar.cs
- TextComposition.cs
- AddInAdapter.cs
- EndpointDispatcher.cs
- SkipQueryOptionExpression.cs
- CacheDependency.cs
- StrokeSerializer.cs
- ThousandthOfEmRealDoubles.cs
- HttpResponseWrapper.cs
- PolicyException.cs
- Compiler.cs
- Double.cs