Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / GeometryHitTestResult.cs / 1 / 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
- AppDomainShutdownMonitor.cs
- SystemUdpStatistics.cs
- TextWriter.cs
- RowToParametersTransformer.cs
- DbConnectionPoolIdentity.cs
- CodeTypeReference.cs
- TimeoutException.cs
- TypeNameConverter.cs
- TextBoxBase.cs
- Vector3DKeyFrameCollection.cs
- TypeHelper.cs
- RoleBoolean.cs
- RootDesignerSerializerAttribute.cs
- ProvidePropertyAttribute.cs
- TypeGenericEnumerableViewSchema.cs
- QfeChecker.cs
- DesignSurfaceEvent.cs
- LongValidatorAttribute.cs
- EntityDataSource.cs
- EntityTypeEmitter.cs
- EntityDataSourceValidationException.cs
- SynthesizerStateChangedEventArgs.cs
- ButtonBase.cs
- ReadOnlyDataSourceView.cs
- ArrayExtension.cs
- ObjectAnimationUsingKeyFrames.cs
- FunctionDescription.cs
- AutoSizeComboBox.cs
- MultiTrigger.cs
- EncryptedPackage.cs
- XmlSchemaInferenceException.cs
- InternalConfigHost.cs
- ByteAnimationUsingKeyFrames.cs
- SynchronizationLockException.cs
- NativeMethods.cs
- ListSortDescriptionCollection.cs
- listitem.cs
- SettingsBindableAttribute.cs
- InputScopeNameConverter.cs
- BitmapSizeOptions.cs
- CharUnicodeInfo.cs
- SortQuery.cs
- TableRow.cs
- AppDomain.cs
- ScriptReference.cs
- Sentence.cs
- SafeNativeMethods.cs
- NameSpaceExtractor.cs
- ToolStripGripRenderEventArgs.cs
- ListenUriMode.cs
- CompositeDataBoundControl.cs
- MetadataArtifactLoaderComposite.cs
- HitTestWithGeometryDrawingContextWalker.cs
- RSAOAEPKeyExchangeDeformatter.cs
- ProviderConnectionPointCollection.cs
- DirectionalLight.cs
- xmlformatgeneratorstatics.cs
- _BasicClient.cs
- SupportsPreviewControlAttribute.cs
- BaseResourcesBuildProvider.cs
- WindowPattern.cs
- MouseWheelEventArgs.cs
- QuaternionValueSerializer.cs
- HiddenFieldDesigner.cs
- Storyboard.cs
- TransformPatternIdentifiers.cs
- CheckBoxField.cs
- FileRecordSequenceHelper.cs
- Literal.cs
- DateTimeUtil.cs
- BooleanStorage.cs
- DataColumnCollection.cs
- WorkflowMarkupSerializer.cs
- BeginStoryboard.cs
- UserNamePasswordValidator.cs
- ButtonBaseAdapter.cs
- TemplateApplicationHelper.cs
- PageAsyncTaskManager.cs
- RenderDataDrawingContext.cs
- EventPrivateKey.cs
- BackStopAuthenticationModule.cs
- AmbientValueAttribute.cs
- ResourceProviderFactory.cs
- BitmapEffectInputData.cs
- Track.cs
- RelOps.cs
- X509RawDataKeyIdentifierClause.cs
- SqlMethodAttribute.cs
- TdsRecordBufferSetter.cs
- CompositeCollectionView.cs
- WS2007FederationHttpBinding.cs
- WebPartAddingEventArgs.cs
- DeviceFilterEditorDialog.cs
- FrameAutomationPeer.cs
- AssociatedControlConverter.cs
- InheritablePropertyChangeInfo.cs
- HelpProvider.cs
- UnsafeNativeMethods.cs
- OpenFileDialog.cs
- RowVisual.cs