Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / ScrollEvent.cs / 1 / ScrollEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.ComponentModel; using System.Drawing; using Microsoft.Win32; ////// /// [System.Runtime.InteropServices.ComVisible(true)] public class ScrollEventArgs : EventArgs { readonly ScrollEventType type; int newValue; private ScrollOrientation scrollOrientation; int oldValue = -1; ///Provides data for the ////// event. /// /// public ScrollEventArgs(ScrollEventType type, int newValue) { this.type = type; this.newValue = newValue; } ////// Initializes a new instance of the ///class. /// /// /// /// public ScrollEventArgs(ScrollEventType type, int newValue, ScrollOrientation scroll) { this.type = type; this.newValue = newValue; this.scrollOrientation = scroll; } ////// Initializes a new instance of the ///class. /// /// public ScrollEventArgs(ScrollEventType type, int oldValue, int newValue) { this.type = type; this.newValue = newValue; this.oldValue = oldValue; } /// public ScrollEventArgs(ScrollEventType type, int oldValue, int newValue, ScrollOrientation scroll) { this.type = type; this.newValue = newValue; this.scrollOrientation = scroll; this.oldValue = oldValue; } /// /// /// public ScrollOrientation ScrollOrientation { get { return scrollOrientation; } } ////// Specifies the type of scroll event that occurred. /// /// ////// /// public ScrollEventType Type { get { return type; } } ////// Specifies the type of scroll event that occurred. /// /// ////// /// public int NewValue { get { return newValue; } set { newValue = value; } } ////// Specifies the new location of the scroll box /// within the /// scroll bar. /// /// ////// /// public int OldValue { get { return oldValue; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Specifies the last position /// within the /// scroll bar. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; using System.ComponentModel; using System.Drawing; using Microsoft.Win32; ////// /// [System.Runtime.InteropServices.ComVisible(true)] public class ScrollEventArgs : EventArgs { readonly ScrollEventType type; int newValue; private ScrollOrientation scrollOrientation; int oldValue = -1; ///Provides data for the ////// event. /// /// public ScrollEventArgs(ScrollEventType type, int newValue) { this.type = type; this.newValue = newValue; } ////// Initializes a new instance of the ///class. /// /// /// /// public ScrollEventArgs(ScrollEventType type, int newValue, ScrollOrientation scroll) { this.type = type; this.newValue = newValue; this.scrollOrientation = scroll; } ////// Initializes a new instance of the ///class. /// /// public ScrollEventArgs(ScrollEventType type, int oldValue, int newValue) { this.type = type; this.newValue = newValue; this.oldValue = oldValue; } /// public ScrollEventArgs(ScrollEventType type, int oldValue, int newValue, ScrollOrientation scroll) { this.type = type; this.newValue = newValue; this.scrollOrientation = scroll; this.oldValue = oldValue; } /// /// /// public ScrollOrientation ScrollOrientation { get { return scrollOrientation; } } ////// Specifies the type of scroll event that occurred. /// /// ////// /// public ScrollEventType Type { get { return type; } } ////// Specifies the type of scroll event that occurred. /// /// ////// /// public int NewValue { get { return newValue; } set { newValue = value; } } ////// Specifies the new location of the scroll box /// within the /// scroll bar. /// /// ////// /// public int OldValue { get { return oldValue; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Specifies the last position /// within the /// scroll bar. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CodeNamespaceImport.cs
- XmlDictionaryString.cs
- ContextMenuService.cs
- AlignmentXValidation.cs
- OciLobLocator.cs
- RegexNode.cs
- XMLSyntaxException.cs
- RoutedEventConverter.cs
- Debugger.cs
- Boolean.cs
- StylusPointProperty.cs
- Rule.cs
- MailMessageEventArgs.cs
- SMSvcHost.cs
- SoapCommonClasses.cs
- XsltQilFactory.cs
- SHA256.cs
- ColorMatrix.cs
- SqlErrorCollection.cs
- FormViewDeletedEventArgs.cs
- GraphicsContext.cs
- SoapExtensionImporter.cs
- InvalidateEvent.cs
- PingOptions.cs
- FormattedTextSymbols.cs
- SQLChars.cs
- DynamicQueryStringParameter.cs
- HwndHost.cs
- Cursor.cs
- DataRowComparer.cs
- FilterQuery.cs
- CngAlgorithmGroup.cs
- TraceListener.cs
- MatrixUtil.cs
- DataSourceCacheDurationConverter.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- Transform.cs
- DataRow.cs
- DocumentViewerHelper.cs
- CultureMapper.cs
- X509CertificateRecipientClientCredential.cs
- DataRowExtensions.cs
- DeferrableContentConverter.cs
- ExtendedPropertyInfo.cs
- ToolStripDropDownItem.cs
- ContactManager.cs
- CellConstant.cs
- Rijndael.cs
- XmlDeclaration.cs
- DataReceivedEventArgs.cs
- safelinkcollection.cs
- ImageMetadata.cs
- TransmissionStrategy.cs
- RetrieveVirtualItemEventArgs.cs
- IssuedTokenClientBehaviorsElementCollection.cs
- EdmMember.cs
- CacheSection.cs
- DBConcurrencyException.cs
- FormsAuthenticationModule.cs
- PcmConverter.cs
- UpDownBase.cs
- BigInt.cs
- DocumentGridPage.cs
- FormsIdentity.cs
- ComponentResourceKeyConverter.cs
- InvokeMethod.cs
- CompensatableTransactionScopeActivityDesigner.cs
- NameTable.cs
- DataColumnCollection.cs
- OdbcConnectionString.cs
- URL.cs
- CroppedBitmap.cs
- ServiceModelDictionary.cs
- MonthCalendar.cs
- _SSPIWrapper.cs
- MaskDesignerDialog.cs
- TreeBuilderXamlTranslator.cs
- MenuTracker.cs
- SchemaTableOptionalColumn.cs
- WebServiceFaultDesigner.cs
- FormViewUpdatedEventArgs.cs
- MobileControlDesigner.cs
- TypeForwardedFromAttribute.cs
- NativeMethods.cs
- RsaKeyIdentifierClause.cs
- BitmapEffectOutputConnector.cs
- TcpServerChannel.cs
- ZeroOpNode.cs
- TextTrailingCharacterEllipsis.cs
- QuaternionAnimation.cs
- DES.cs
- DataRowCollection.cs
- NativeMethods.cs
- ListBoxDesigner.cs
- TextEditorSpelling.cs
- CodeSpit.cs
- HttpCapabilitiesBase.cs
- NativeMethods.cs
- SchemaSetCompiler.cs
- EntityDataSource.cs