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
- HasCopySemanticsAttribute.cs
- SerTrace.cs
- _CommandStream.cs
- BamlMapTable.cs
- LicenseContext.cs
- WorkflowRuntimeServiceElementCollection.cs
- ManagementQuery.cs
- ConfigurationElementCollection.cs
- Bold.cs
- MdImport.cs
- PointLightBase.cs
- DBSchemaTable.cs
- FontStretch.cs
- RegistrationServices.cs
- TextBoxBase.cs
- UrlMappingsModule.cs
- SQLSingle.cs
- ServicePointManagerElement.cs
- FileUtil.cs
- XmlSignatureManifest.cs
- EntityUtil.cs
- BasicKeyConstraint.cs
- BroadcastEventHelper.cs
- DbReferenceCollection.cs
- ToolStripProgressBar.cs
- RuleSettingsCollection.cs
- RenderData.cs
- FixedSOMTable.cs
- ActiveXSite.cs
- EntitySetRetriever.cs
- HttpCachePolicyWrapper.cs
- PrincipalPermission.cs
- SocketException.cs
- InkCanvasAutomationPeer.cs
- OrderPreservingMergeHelper.cs
- SystemColorTracker.cs
- FontFamily.cs
- XPathSelectionIterator.cs
- FormViewDeleteEventArgs.cs
- ListContractAdapter.cs
- MatchNoneMessageFilter.cs
- _NestedSingleAsyncResult.cs
- SqlTrackingService.cs
- Setter.cs
- PropertySourceInfo.cs
- NetworkAddressChange.cs
- BamlVersionHeader.cs
- PassportAuthentication.cs
- SafeLibraryHandle.cs
- ListCollectionView.cs
- XamlDebuggerXmlReader.cs
- SqlDataSourceEnumerator.cs
- BitmapMetadata.cs
- ExecutionContext.cs
- HyperLinkField.cs
- EventBuilder.cs
- PackageRelationshipSelector.cs
- xdrvalidator.cs
- OdbcConnectionOpen.cs
- DataGridBoolColumn.cs
- HashCodeCombiner.cs
- TargetConverter.cs
- Freezable.cs
- EventLogger.cs
- SaveFileDialog.cs
- ToolStripCustomTypeDescriptor.cs
- ScrollData.cs
- ObjectListGeneralPage.cs
- SplayTreeNode.cs
- InputLanguageProfileNotifySink.cs
- TypeDependencyAttribute.cs
- RenderOptions.cs
- FixedSOMPageElement.cs
- RegexInterpreter.cs
- ReachDocumentPageSerializer.cs
- Transform3D.cs
- TypeElement.cs
- OleAutBinder.cs
- UpdateTranslator.cs
- tooltip.cs
- CategoryAttribute.cs
- DurationConverter.cs
- DataGridViewLinkCell.cs
- CacheForPrimitiveTypes.cs
- StatusBarAutomationPeer.cs
- ADConnectionHelper.cs
- DataRelationCollection.cs
- Site.cs
- ComboBoxRenderer.cs
- InstanceLockException.cs
- XmlReader.cs
- SQLInt32Storage.cs
- PerfCounters.cs
- GenerateHelper.cs
- TextTreeInsertElementUndoUnit.cs
- Hash.cs
- ByteAnimationUsingKeyFrames.cs
- PasswordTextNavigator.cs
- EncodingNLS.cs
- TimeEnumHelper.cs