Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- OdbcRowUpdatingEvent.cs
- AssemblyUtil.cs
- KnownIds.cs
- CharacterShapingProperties.cs
- HttpConfigurationContext.cs
- SQLMembershipProvider.cs
- FlowDocumentScrollViewer.cs
- AnalyzedTree.cs
- dataprotectionpermission.cs
- sqlser.cs
- ModifierKeysConverter.cs
- ElementMarkupObject.cs
- ObjectSelectorEditor.cs
- XMLUtil.cs
- Container.cs
- RenderTargetBitmap.cs
- ApplicationHost.cs
- PartialList.cs
- ElementAtQueryOperator.cs
- DataListAutoFormat.cs
- RepeatBehaviorConverter.cs
- XmlSchemaValidationException.cs
- ServiceNotStartedException.cs
- IOException.cs
- TraceHandlerErrorFormatter.cs
- ToolStripSettings.cs
- PreparingEnlistment.cs
- ColumnReorderedEventArgs.cs
- Missing.cs
- Transform.cs
- CancelEventArgs.cs
- AlgoModule.cs
- DocobjHost.cs
- VoiceInfo.cs
- Timer.cs
- DataObjectAttribute.cs
- ColumnMapProcessor.cs
- BitmapCodecInfoInternal.cs
- QueryCacheEntry.cs
- XmlWellformedWriter.cs
- DataViewListener.cs
- UdpSocketReceiveManager.cs
- CodeMemberField.cs
- ByteRangeDownloader.cs
- Selector.cs
- SchemaTypeEmitter.cs
- HttpGetServerProtocol.cs
- StorageModelBuildProvider.cs
- ColumnResizeAdorner.cs
- OdbcException.cs
- TimelineGroup.cs
- TimelineGroup.cs
- WebServiceHandler.cs
- ScriptModule.cs
- NavigateEvent.cs
- AppDomainResourcePerfCounters.cs
- TextSimpleMarkerProperties.cs
- RegistrySecurity.cs
- Point3D.cs
- CallbackBehaviorAttribute.cs
- InsufficientMemoryException.cs
- MissingManifestResourceException.cs
- DetailsViewRowCollection.cs
- WebPartConnectVerb.cs
- SafeNativeMethods.cs
- Part.cs
- SoapFormatExtensions.cs
- ErrorFormatterPage.cs
- ToolStripDropDownClosedEventArgs.cs
- SecUtil.cs
- DataBindingHandlerAttribute.cs
- WebControlAdapter.cs
- SiteMapDataSource.cs
- PathGeometry.cs
- AppSettingsSection.cs
- BinaryObjectWriter.cs
- AggregateNode.cs
- Identifier.cs
- ServiceChannelProxy.cs
- DelegateTypeInfo.cs
- CopyAction.cs
- ServiceConfigurationTraceRecord.cs
- ConvertEvent.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- UnconditionalPolicy.cs
- DesignerForm.cs
- GorillaCodec.cs
- DynamicResourceExtension.cs
- VisemeEventArgs.cs
- EventArgs.cs
- SmuggledIUnknown.cs
- HtmlTable.cs
- ErrorWebPart.cs
- ContractUtils.cs
- HostedElements.cs
- QilNode.cs
- CurrentChangingEventManager.cs
- BinaryFormatterWriter.cs
- DesignTimeTemplateParser.cs
- FixedSOMTextRun.cs