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
- DelegateTypeInfo.cs
- MobileCapabilities.cs
- UInt64Storage.cs
- BitmapScalingModeValidation.cs
- DocumentOutline.cs
- ServicesUtilities.cs
- RelationshipWrapper.cs
- SingleConverter.cs
- DataMemberFieldConverter.cs
- PackagePartCollection.cs
- SyndicationDeserializer.cs
- SessionIDManager.cs
- AttachedAnnotationChangedEventArgs.cs
- DocumentPaginator.cs
- LineBreakRecord.cs
- WebScriptServiceHost.cs
- OleCmdHelper.cs
- Environment.cs
- IsolatedStorage.cs
- PreApplicationStartMethodAttribute.cs
- OSFeature.cs
- WithStatement.cs
- Matrix3D.cs
- StyleHelper.cs
- ScriptingWebServicesSectionGroup.cs
- SocketAddress.cs
- ResXResourceWriter.cs
- TypeReference.cs
- ProxyGenerator.cs
- StringUtil.cs
- WsatServiceCertificate.cs
- NamespaceListProperty.cs
- DBDataPermissionAttribute.cs
- ExceptionAggregator.cs
- InstanceOwnerQueryResult.cs
- TextBlock.cs
- SelectionItemPattern.cs
- MsmqBindingBase.cs
- NavigationProgressEventArgs.cs
- StateChangeEvent.cs
- NamedPipeAppDomainProtocolHandler.cs
- ForceCopyBuildProvider.cs
- ObjectReaderCompiler.cs
- TemplateField.cs
- ScrollProperties.cs
- LogicalExpr.cs
- BuildProviderCollection.cs
- SQLResource.cs
- Atom10ItemFormatter.cs
- URIFormatException.cs
- ItemsControl.cs
- TableLayoutPanelCellPosition.cs
- DeviceContext2.cs
- DataViewManager.cs
- SimpleWebHandlerParser.cs
- GenericEnumConverter.cs
- ValidationSummary.cs
- TextBox.cs
- CharacterBuffer.cs
- ConfigurationSchemaErrors.cs
- TemplateColumn.cs
- WebPartActionVerb.cs
- TableRow.cs
- XmlRawWriterWrapper.cs
- ReadOnlyTernaryTree.cs
- MessageQueueAccessControlEntry.cs
- DropShadowEffect.cs
- DesignerAttribute.cs
- TreeViewImageKeyConverter.cs
- MenuItemBindingCollection.cs
- SchemaManager.cs
- SqlDataSourceCommandEventArgs.cs
- PropertyTabAttribute.cs
- objectresult_tresulttype.cs
- EntityDataSourceEntityTypeFilterItem.cs
- ControlPropertyNameConverter.cs
- DynamicMethod.cs
- DateTimeUtil.cs
- HttpCookiesSection.cs
- LoginDesigner.cs
- OpenFileDialog.cs
- IPPacketInformation.cs
- OrderedEnumerableRowCollection.cs
- DbSetClause.cs
- AnnotationMap.cs
- DataGridViewRowEventArgs.cs
- ConfigurationElementCollection.cs
- TTSVoice.cs
- SettingsSection.cs
- OdbcParameterCollection.cs
- HtmlInputButton.cs
- RegexCapture.cs
- RightsManagementInformation.cs
- HttpListenerRequest.cs
- OletxDependentTransaction.cs
- _SslSessionsCache.cs
- FontCollection.cs
- SystemParameters.cs
- SingleStorage.cs
- ButtonBase.cs