Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Documents / PaginationProgressEventArgs.cs / 1 / 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
- KeySplineConverter.cs
- Identifier.cs
- CollaborationHelperFunctions.cs
- TrustManagerMoreInformation.cs
- IsolationInterop.cs
- Semaphore.cs
- HeaderedContentControl.cs
- ArrayConverter.cs
- AuthenticationModuleElementCollection.cs
- EndpointAddressMessageFilter.cs
- XmlAtomicValue.cs
- XsltFunctions.cs
- LabelDesigner.cs
- SafeTimerHandle.cs
- _TLSstream.cs
- ProgressBarRenderer.cs
- WebBrowser.cs
- ButtonFieldBase.cs
- RuleRef.cs
- TypeUtils.cs
- CollectionViewGroup.cs
- GridView.cs
- ShaderEffect.cs
- TypeExtensions.cs
- EventMappingSettingsCollection.cs
- InstanceDescriptor.cs
- PagerStyle.cs
- ThreadStaticAttribute.cs
- AddInControllerImpl.cs
- DataTableReader.cs
- TogglePattern.cs
- TreeNodeStyle.cs
- CodeVariableReferenceExpression.cs
- securitycriticaldataClass.cs
- XmlSerializerVersionAttribute.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- MSAANativeProvider.cs
- PeerHopCountAttribute.cs
- HtmlElement.cs
- ProjectionPruner.cs
- ManualResetEventSlim.cs
- XsdDateTime.cs
- Setter.cs
- OperationParameterInfo.cs
- WebHttpBindingElement.cs
- HebrewCalendar.cs
- DataServiceException.cs
- XPathChildIterator.cs
- assertwrapper.cs
- CqlWriter.cs
- FormatterServicesNoSerializableCheck.cs
- DataRowExtensions.cs
- XmlIncludeAttribute.cs
- IndicFontClient.cs
- ComponentGlyph.cs
- DateTimeStorage.cs
- BamlTreeMap.cs
- XmlEncodedRawTextWriter.cs
- PageEventArgs.cs
- SymLanguageVendor.cs
- CharUnicodeInfo.cs
- FileLogRecord.cs
- GridViewEditEventArgs.cs
- NamespaceExpr.cs
- Module.cs
- HtmlCommandAdapter.cs
- PropertyIdentifier.cs
- GeneralTransform3DTo2D.cs
- recordstatefactory.cs
- SelectedCellsChangedEventArgs.cs
- XamlInterfaces.cs
- PropertyTabAttribute.cs
- EventArgs.cs
- StaticFileHandler.cs
- ColorPalette.cs
- SymbolMethod.cs
- DbDataRecord.cs
- OrderedDictionary.cs
- SwitchExpression.cs
- TargetControlTypeCache.cs
- ReflectionServiceProvider.cs
- AuthenticatedStream.cs
- TextElementEditingBehaviorAttribute.cs
- MenuRenderer.cs
- LogEntry.cs
- StreamGeometryContext.cs
- GenericsInstances.cs
- LocatorManager.cs
- UpdatePanelTrigger.cs
- TaskHelper.cs
- MethodToken.cs
- URLMembershipCondition.cs
- PlanCompiler.cs
- UserPreferenceChangingEventArgs.cs
- DefaultPropertyAttribute.cs
- RegistryKey.cs
- RoleManagerSection.cs
- BamlReader.cs
- SortableBindingList.cs
- DependencyProperty.cs