Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / TreeViewHitTestInfo.cs / 1305376 / TreeViewHitTestInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System.Diagnostics; using System; ////// /// public class TreeViewHitTestInfo { private TreeViewHitTestLocations loc; private TreeNode node; ////// Specifies the return value for HITTEST on treeview. /// ////// /// Creates a TreeViewHitTestInfo instance. /// public TreeViewHitTestInfo(TreeNode hitNode, TreeViewHitTestLocations hitLocation) { this.node = hitNode; this.loc = hitLocation; } ////// /// This gives the exact location returned by hit test on treeview. /// public TreeViewHitTestLocations Location { get { return loc; } } ////// /// This gives the node returned by hit test on treeview. /// public TreeNode Node { get { return node; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ContextItemManager.cs
- LinearGradientBrush.cs
- PropertyCondition.cs
- CngKeyCreationParameters.cs
- GetLastErrorDetailsRequest.cs
- ProtectedProviderSettings.cs
- FileRecordSequenceCompletedAsyncResult.cs
- AppDomainFactory.cs
- Lease.cs
- ISSmlParser.cs
- TransformerInfoCollection.cs
- DataControlImageButton.cs
- DocumentGrid.cs
- CompleteWizardStep.cs
- SqlDuplicator.cs
- OperationFormatStyle.cs
- CrossAppDomainChannel.cs
- HtmlButton.cs
- CleanUpVirtualizedItemEventArgs.cs
- Image.cs
- RandomNumberGenerator.cs
- XmlTextEncoder.cs
- GridPattern.cs
- Floater.cs
- DataServiceKeyAttribute.cs
- HttpVersion.cs
- BindUriHelper.cs
- WebPartExportVerb.cs
- SelectingProviderEventArgs.cs
- InputReportEventArgs.cs
- ObsoleteAttribute.cs
- Condition.cs
- HttpPostedFile.cs
- DesignTimeVisibleAttribute.cs
- VariableValue.cs
- MouseDevice.cs
- DataGridViewLinkCell.cs
- PatternMatcher.cs
- TemplateXamlTreeBuilder.cs
- TableFieldsEditor.cs
- WhereQueryOperator.cs
- IImplicitResourceProvider.cs
- ItemList.cs
- TextBox.cs
- TextSelectionHighlightLayer.cs
- AdapterDictionary.cs
- ContainerSelectorActiveEvent.cs
- IdnMapping.cs
- Stacktrace.cs
- RequestCachingSection.cs
- COAUTHINFO.cs
- OdbcConnectionStringbuilder.cs
- RegexCompiler.cs
- ServiceHandle.cs
- WebPartEventArgs.cs
- DataViewListener.cs
- SQLDateTimeStorage.cs
- DataTableClearEvent.cs
- SmtpMail.cs
- RangeValidator.cs
- PrintEvent.cs
- QuaternionAnimationBase.cs
- FileDialog.cs
- UniqueConstraint.cs
- BrowserCapabilitiesFactoryBase.cs
- TextSelectionHighlightLayer.cs
- IndexingContentUnit.cs
- TemplateContainer.cs
- HitTestFilterBehavior.cs
- PassportIdentity.cs
- Command.cs
- ErrorProvider.cs
- RadioButtonAutomationPeer.cs
- CoTaskMemSafeHandle.cs
- ListSortDescription.cs
- MetadataUtil.cs
- ProxyWebPartManager.cs
- IIS7WorkerRequest.cs
- CodeObject.cs
- XPathDocumentBuilder.cs
- TriggerAction.cs
- PrintPageEvent.cs
- GlyphRunDrawing.cs
- _ServiceNameStore.cs
- FormsAuthenticationUser.cs
- XmlConvert.cs
- RuntimeArgumentHandle.cs
- DataGrid.cs
- DataGrid.cs
- BaseCAMarshaler.cs
- SerializationInfo.cs
- httpserverutility.cs
- SettingsPropertyCollection.cs
- DllNotFoundException.cs
- XPathBinder.cs
- EndEvent.cs
- TableCell.cs
- DataGridViewRowConverter.cs
- SafeHandle.cs
- XmlFormatExtensionPointAttribute.cs