Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / SplitterEvent.cs / 1305376 / SplitterEvent.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 SplitterEventArgs : EventArgs { private readonly int x; private readonly int y; private int splitX; private int splitY; ////// Provides data for splitter events. /// ////// /// public SplitterEventArgs(int x, int y, int splitX, int splitY) { this.x = x; this.y = y; this.splitX = splitX; this.splitY = splitY; } ////// Initializes an instance of the ///class with the specified coordinates /// of the mouse pointer and the upper-left corner of the . /// /// /// public int X { get { return x; } } ////// Gets the x-coordinate of the /// mouse pointer (in client coordinates). /// ////// /// public int Y { get { return y; } } ////// Gets the y-coordinate of the mouse pointer (in /// client coordinates). /// ////// /// public int SplitX { get { return splitX; } set { splitX = value; } } ////// Gets the x-coordinate of the /// upper-left corner of the ///(in client coordinates). /// /// /// public int SplitY { get { return splitY; } set { splitY = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets the y-coordinate of the upper-left corner of the ///(in client coordinates). ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ButtonField.cs
- XmlTextReader.cs
- BitmapMetadataEnumerator.cs
- KeyedHashAlgorithm.cs
- figurelengthconverter.cs
- CallContext.cs
- CodeObject.cs
- BasicDesignerLoader.cs
- RawStylusInput.cs
- HexParser.cs
- LiteralSubsegment.cs
- DataColumnCollection.cs
- FormViewUpdateEventArgs.cs
- TraceContext.cs
- CompensationHandlingFilter.cs
- GenericTypeParameterBuilder.cs
- LocalFileSettingsProvider.cs
- ColumnCollection.cs
- MergeFilterQuery.cs
- AssemblyResourceLoader.cs
- SspiNegotiationTokenAuthenticator.cs
- log.cs
- LinqTreeNodeEvaluator.cs
- ToolStripContainerActionList.cs
- HtmlTitle.cs
- Variable.cs
- ReceiveCompletedEventArgs.cs
- GridView.cs
- InputScope.cs
- ToggleButton.cs
- Substitution.cs
- ListItem.cs
- PenLineJoinValidation.cs
- SevenBitStream.cs
- Focus.cs
- FormatterConverter.cs
- HandlerMappingMemo.cs
- DefaultMemberAttribute.cs
- DataColumnCollection.cs
- XmlDigitalSignatureProcessor.cs
- DataGridViewComboBoxColumn.cs
- ArrayWithOffset.cs
- SafeReversePInvokeHandle.cs
- SqlDataAdapter.cs
- QfeChecker.cs
- GridViewRowPresenter.cs
- CompiledRegexRunner.cs
- StringSource.cs
- VectorConverter.cs
- MdImport.cs
- UnderstoodHeaders.cs
- RelationshipFixer.cs
- OneOfElement.cs
- LoginViewDesigner.cs
- MexServiceChannelBuilder.cs
- DeferredReference.cs
- WebBrowserPermission.cs
- DataControlFieldHeaderCell.cs
- ColumnWidthChangedEvent.cs
- RemotingException.cs
- HtmlDocument.cs
- DiagnosticTrace.cs
- Semaphore.cs
- StringArrayConverter.cs
- ListViewSortEventArgs.cs
- RequestResizeEvent.cs
- RtType.cs
- ParagraphVisual.cs
- FactoryId.cs
- MailMessage.cs
- PageBuildProvider.cs
- DocumentGridContextMenu.cs
- IconConverter.cs
- RoleManagerSection.cs
- StatusBarPanelClickEvent.cs
- DataGridCaption.cs
- HttpHandlerAction.cs
- TextRangeEditTables.cs
- HtmlEmptyTagControlBuilder.cs
- SelectionBorderGlyph.cs
- EncoderNLS.cs
- ResourceDefaultValueAttribute.cs
- DrawingGroup.cs
- CompilerScopeManager.cs
- Rotation3DAnimationBase.cs
- AutoResizedEvent.cs
- TextSegment.cs
- DataSetUtil.cs
- NavigationPropertyAccessor.cs
- SqlCachedBuffer.cs
- ColumnHeaderConverter.cs
- RequiredAttributeAttribute.cs
- errorpatternmatcher.cs
- ScriptRegistrationManager.cs
- TypeNameHelper.cs
- BoolExpressionVisitors.cs
- NullableFloatSumAggregationOperator.cs
- AssemblyBuilder.cs
- MimeMapping.cs
- ADConnectionHelper.cs