Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- KeyMatchBuilder.cs
- DeferredTextReference.cs
- CallTemplateAction.cs
- CounterCreationData.cs
- CustomErrorCollection.cs
- ScrollBarRenderer.cs
- DataGridAutoFormatDialog.cs
- DateTimeUtil.cs
- TextViewBase.cs
- AssemblyHash.cs
- SafeTimerHandle.cs
- PageParserFilter.cs
- CodeSnippetStatement.cs
- EventRoute.cs
- ContextCorrelationInitializer.cs
- OleDbConnection.cs
- Int32AnimationBase.cs
- DataGridViewCellParsingEventArgs.cs
- EarlyBoundInfo.cs
- DataControlPagerLinkButton.cs
- DataSourceControl.cs
- DetailsViewCommandEventArgs.cs
- ADMembershipProvider.cs
- SplineQuaternionKeyFrame.cs
- DataGridLinkButton.cs
- ChainedAsyncResult.cs
- CqlIdentifiers.cs
- CallbackValidator.cs
- GetWinFXPath.cs
- PassportPrincipal.cs
- OleDbWrapper.cs
- StandardCommandToolStripMenuItem.cs
- URLIdentityPermission.cs
- BrowserDefinitionCollection.cs
- DecoderFallbackWithFailureFlag.cs
- ThousandthOfEmRealDoubles.cs
- PerformanceCounterCategory.cs
- SettingsAttributes.cs
- DbFunctionCommandTree.cs
- ExpressionSelection.cs
- CodeGenerator.cs
- TraceListener.cs
- TitleStyle.cs
- PointLightBase.cs
- DayRenderEvent.cs
- Int16KeyFrameCollection.cs
- ObjectViewListener.cs
- StructuralType.cs
- XmlReader.cs
- AccessKeyManager.cs
- CellConstant.cs
- NonSerializedAttribute.cs
- ConfigViewGenerator.cs
- ZipFileInfoCollection.cs
- DiagnosticTraceSource.cs
- WebConfigurationManager.cs
- SrgsToken.cs
- CircleHotSpot.cs
- ChameleonKey.cs
- TableLayoutRowStyleCollection.cs
- EdmSchemaAttribute.cs
- IItemProperties.cs
- Events.cs
- CacheForPrimitiveTypes.cs
- GC.cs
- DispatcherTimer.cs
- SubMenuStyleCollection.cs
- PageParser.cs
- Propagator.ExtentPlaceholderCreator.cs
- XNodeValidator.cs
- SqlResolver.cs
- FontEmbeddingManager.cs
- MetadataArtifactLoaderCompositeFile.cs
- PropertyEmitter.cs
- ByteAnimation.cs
- Light.cs
- DataTable.cs
- SetMemberBinder.cs
- VisualProxy.cs
- EditorPartCollection.cs
- UnionExpr.cs
- OleDbParameterCollection.cs
- EntityViewGenerator.cs
- RuntimeConfigLKG.cs
- Decoder.cs
- ClientSponsor.cs
- indexingfiltermarshaler.cs
- DropSource.cs
- DesignerImageAdapter.cs
- SchemaMerger.cs
- columnmapkeybuilder.cs
- UnmanagedMarshal.cs
- WebContext.cs
- Stack.cs
- DayRenderEvent.cs
- DataComponentGenerator.cs
- DocumentSchemaValidator.cs
- StubHelpers.cs
- HitTestDrawingContextWalker.cs
- HopperCache.cs