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
- TypeConverter.cs
- InvalidAsynchronousStateException.cs
- Window.cs
- MasterPageCodeDomTreeGenerator.cs
- Version.cs
- TypeUtils.cs
- PassportIdentity.cs
- SecurityRequiresReviewAttribute.cs
- IOException.cs
- StringFunctions.cs
- prefixendpointaddressmessagefilter.cs
- DataSysAttribute.cs
- BaseAppDomainProtocolHandler.cs
- DispatcherExceptionFilterEventArgs.cs
- PermissionAttributes.cs
- BookmarkList.cs
- TrackingMemoryStream.cs
- HttpCachePolicy.cs
- DataGridColumnDropSeparator.cs
- InkCanvasSelection.cs
- ServiceProviders.cs
- util.cs
- QuarticEase.cs
- FileLogRecordEnumerator.cs
- StubHelpers.cs
- Sentence.cs
- KeyBinding.cs
- HasCopySemanticsAttribute.cs
- DBSqlParserTable.cs
- CanonicalizationDriver.cs
- SafeFileMappingHandle.cs
- UInt64.cs
- CollectionViewGroupInternal.cs
- NodeInfo.cs
- PropertyTabChangedEvent.cs
- CodeComment.cs
- SecureStringHasher.cs
- CaseCqlBlock.cs
- AuditLogLocation.cs
- NamespaceTable.cs
- Int64AnimationBase.cs
- IMembershipProvider.cs
- FocusWithinProperty.cs
- AgileSafeNativeMemoryHandle.cs
- SchemaMapping.cs
- CodeBinaryOperatorExpression.cs
- AxImporter.cs
- Form.cs
- AutomationPatternInfo.cs
- CalendarTable.cs
- BaseTemplateBuildProvider.cs
- Content.cs
- WebPartEditVerb.cs
- NativeMethods.cs
- CommandHelper.cs
- TextRangeEdit.cs
- Menu.cs
- RepeaterItemCollection.cs
- ViewPort3D.cs
- _SpnDictionary.cs
- nulltextcontainer.cs
- MouseDevice.cs
- CodeMethodReturnStatement.cs
- FileSystemEventArgs.cs
- LinkedDataMemberFieldEditor.cs
- oledbmetadatacolumnnames.cs
- XamlSerializerUtil.cs
- SignatureHelper.cs
- ContentPlaceHolder.cs
- SendMailErrorEventArgs.cs
- ComponentEvent.cs
- WebContext.cs
- XPathNodeList.cs
- ISessionStateStore.cs
- ClientCultureInfo.cs
- DropShadowEffect.cs
- DoubleAnimationUsingKeyFrames.cs
- CapabilitiesState.cs
- OrthographicCamera.cs
- _UriTypeConverter.cs
- StoreContentChangedEventArgs.cs
- EntityExpressionVisitor.cs
- ViewStateException.cs
- METAHEADER.cs
- DataGridViewToolTip.cs
- FileVersion.cs
- BypassElementCollection.cs
- SpotLight.cs
- GenericXmlSecurityToken.cs
- DBConnectionString.cs
- MatrixAnimationUsingKeyFrames.cs
- PropertyGeneratedEventArgs.cs
- RecordManager.cs
- NamespaceListProperty.cs
- KnownBoxes.cs
- Material.cs
- _CookieModule.cs
- XmlTypeMapping.cs
- StandardOleMarshalObject.cs
- PointAnimation.cs