Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / GeometryHitTestResult.cs / 1305600 / GeometryHitTestResult.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2003 // // File: GeometryHitTestResult //----------------------------------------------------------------------------- using System; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Threading; using System.Collections; using System.Diagnostics; using MS.Internal; namespace System.Windows.Media { ////// This class returns the point and visual hit during a hit test pass. /// public class GeometryHitTestResult : HitTestResult { private IntersectionDetail _intersectionDetail; ////// This constructor takes a visual and point respresenting a hit. /// public GeometryHitTestResult( Visual visualHit, IntersectionDetail intersectionDetail) : base(visualHit) { _intersectionDetail = intersectionDetail; } ////// The intersection detail with how geometry intersected with scene. /// public IntersectionDetail IntersectionDetail { get { return _intersectionDetail; } } ////// Re-expose Visual property strongly typed to 2D Visual. /// public new Visual VisualHit { get { return (Visual) base.VisualHit; } } } } // 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
- MdiWindowListStrip.cs
- StringExpressionSet.cs
- SolidColorBrush.cs
- X509SecurityTokenProvider.cs
- ColorDialog.cs
- HttpAsyncResult.cs
- WebPartDeleteVerb.cs
- ControlValuePropertyAttribute.cs
- SingleObjectCollection.cs
- ELinqQueryState.cs
- BitmapScalingModeValidation.cs
- CardSpacePolicyElement.cs
- ThreadExceptionDialog.cs
- SafeHandles.cs
- Site.cs
- ResourceFallbackManager.cs
- ServiceContractGenerator.cs
- FullTextState.cs
- DelimitedListTraceListener.cs
- ApplicationFileCodeDomTreeGenerator.cs
- XPathNodeInfoAtom.cs
- NumberFormatter.cs
- ConnectionManagementSection.cs
- XmlSchemaNotation.cs
- PopupRoot.cs
- TypeValidationEventArgs.cs
- WebServiceClientProxyGenerator.cs
- CannotUnloadAppDomainException.cs
- ValidationPropertyAttribute.cs
- OutputScope.cs
- DataReaderContainer.cs
- WinEventHandler.cs
- SqlTypesSchemaImporter.cs
- FlowDocumentFormatter.cs
- TreeNodeBindingCollection.cs
- SurrogateSelector.cs
- TextBounds.cs
- KeyProperty.cs
- XmlSerializerSection.cs
- ByteAnimation.cs
- PersonalizablePropertyEntry.cs
- Color.cs
- CompilerResults.cs
- SystemGatewayIPAddressInformation.cs
- ProcessRequestArgs.cs
- Socket.cs
- ScriptResourceAttribute.cs
- CompositionAdorner.cs
- Delegate.cs
- SecurityTokenProvider.cs
- XmlCharCheckingWriter.cs
- ObjectKeyFrameCollection.cs
- ConditionBrowserDialog.cs
- XmlHierarchicalEnumerable.cs
- BinarySerializer.cs
- SqlProfileProvider.cs
- DynamicAttribute.cs
- Polygon.cs
- figurelength.cs
- TemplateControl.cs
- InfoCardTrace.cs
- CompilationUnit.cs
- Camera.cs
- TransactedBatchingBehavior.cs
- SortQuery.cs
- DbConvert.cs
- TransformerInfoCollection.cs
- ParallelEnumerableWrapper.cs
- BoundColumn.cs
- SecurityPolicySection.cs
- HttpCacheVary.cs
- PeerNameRecordCollection.cs
- PathSegment.cs
- XhtmlBasicObjectListAdapter.cs
- HttpHandlerAction.cs
- ToolStripRenderer.cs
- HebrewCalendar.cs
- WebPartCancelEventArgs.cs
- WindowsPrincipal.cs
- UpdateEventArgs.cs
- RouteData.cs
- UserControlBuildProvider.cs
- ListViewCancelEventArgs.cs
- WinEventTracker.cs
- JsonServiceDocumentSerializer.cs
- Barrier.cs
- ECDiffieHellmanCng.cs
- WebPartHelpVerb.cs
- XmlSchemaRedefine.cs
- AccessedThroughPropertyAttribute.cs
- CheckBoxFlatAdapter.cs
- BaseTreeIterator.cs
- DatagramAdapter.cs
- WebEventCodes.cs
- EncryptedData.cs
- ChangeInterceptorAttribute.cs
- ClonableStack.cs
- XamlParser.cs
- XmlAnyElementAttributes.cs
- Parser.cs