====== ThinkGeo.MapSuite.DesktopEdition.WpfMap ====== {{section>upgrade_map_suite_to_10.0}} The Map Control used to develop a WPF application. ===== Inheritance Hierarchy ===== *System.Object *System.Windows.Threading.DispatcherObject *System.Windows.DependencyObject *System.Windows.Media.Visual *System.Windows.UIElement *System.Windows.FrameworkElement *System.Windows.Controls.Panel *System.Windows.Controls.Canvas ***ThinkGeo.MapSuite.DesktopEdition.WpfMap** ===== Members Summary ===== ==== Public Constructors ==== ** {{wiki:PublicMethod.gif|}} WpfMap() ** * //Constructor of WPF MapControl.// == Remarks == * //In this constructor, we will initilize some class modular variables and hook up some events.// == Parameters ==
==== Protected Constructors ==== ==== Public Methods ==== ** {{wiki:PublicMethod.gif|}} Dispose() ** * //Releases all resources used by the MapControl.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Dispose.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetBitmap(Single,Single) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#GetBitmap.28Single.2C_Single.29// == Return Value == * Type:Bitmap * Description:N/A == Parameters == * //width// * Type:Single * Description:N/A * //height// * Type:Single * Description:N/A
** {{wiki:PublicMethod.gif|}} ZoomIn(Int32) ** * //This method will zoom in the currentExtent by the percentage provided.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomIn.28Int32.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to zoom in.
** {{wiki:PublicMethod.gif|}} ZoomIntoCenter(Int32,Feature) ** * //This method will zoom in and center at the currentExtent.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomIntoCenter.28Int32.2C_Feature.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to zoom in. * //centerFeature// * Type:[[ThinkGeo.MapSuite.Core.Feature|Feature]] * Description:This parameter is the feature you want to center on.
** {{wiki:PublicMethod.gif|}} ZoomIntoCenter(Int32,PointShape) ** * //This method will zoom in and center at the currentExtent.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomIntoCenter.28Int32.2C_PointShape.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to zoom in. * //worldPoint// * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] * Description:This parameter is the world point you want to center on.
** {{wiki:PublicMethod.gif|}} ZoomIntoCenter(Int32,Single,Single) ** * //This method will zoom in and center at the currentExtent.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomIntoCenter.28Int32.2C_Single.2C_Single.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to zoom in. * //screenX// * Type:Single * Description:This parameter is the screen X you want to center on. * //screenY// * Type:Single * Description:This parameter is the screen Y you want to center on.
** {{wiki:PublicMethod.gif|}} ZoomIntoCenter(Int32,ScreenPointF) ** * //This method will zoom in and center at the currentExtent.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomIntoCenter.28Int32.2C_ScreenPointF.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to zoom in. * //screenPoint// * Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] * Description:This parameter is the screen point you want to center on.
** {{wiki:PublicMethod.gif|}} ZoomOut(Int32) ** * //This method will zoom out the currentExtent by the percentage provided.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomOut.28Int32.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to zoom out.
** {{wiki:PublicMethod.gif|}} ZoomOutToCenter(Int32,Feature) ** * //This method will zoom out and center at the currentExtent.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomOutToCenter.28Int32.2C_Feature.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to zoom out. * //centerFeature// * Type:[[ThinkGeo.MapSuite.Core.Feature|Feature]] * Description:This parameter is the feature you want to center on.
** {{wiki:PublicMethod.gif|}} ZoomOutToCenter(Int32,PointShape) ** * //This method will zoom out and center at the currentExtent.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomOutToCenter.28Int32.2C_PointShape.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to zoom out. * //worldPoint// * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] * Description:This parameter is the world point you want to center on.
** {{wiki:PublicMethod.gif|}} ZoomOutToCenter(Int32,Single,Single) ** * //This method will zoom out and center at the currentExtent.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomOutToCenter.28Int32.2C_Single.2C_Single.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to zoom out. * //screenX// * Type:Single * Description:This parameter is the screen X you want to center on. * //screenY// * Type:Single * Description:This parameter is the screen Y you want to center on.
** {{wiki:PublicMethod.gif|}} ZoomOutToCenter(Int32,ScreenPointF) ** * //This method will zoom out and center at the currentExtent.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomOutToCenter.28Int32.2C_ScreenPointF.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to zoom out. * //screenPoint// * Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] * Description:This parameter is the screen point you want to center on.
** {{wiki:PublicMethod.gif|}} ZoomToScale(Double) ** * //This method will zoom the currentExtent to the targetScale.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomToScale.28Double.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //targetScale// * Type:Double * Description:This parameter is the scale you want to zoom to.
** {{wiki:PublicMethod.gif|}} ZoomToScale(Double,ScreenPointF) ** * //This method will zoom the currentExtent to the new TargetScale with a given offset Screen Point.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomToScale.28Double.2C_ScreenPointF.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //targetScale// * Type:Double * Description:This parameter is the scale you want to zoom to. * //offsetScreenPoint// * Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] * Description:This parameter is the offset Screen Point.
** {{wiki:PublicMethod.gif|}} ZoomToScale(Double,Single,Single) ** * //This method will zoom the currentExtent to the new TargetScale with a given offset in screen coordinates.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomToScale.28Double.2C_Single.2C_Single.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //targetScale// * Type:Double * Description:This parameter is the scale you want to zoom to. * //offsetScreenX// * Type:Single * Description:This parameter is the offsetScreen X. * //offsetScreenY// * Type:Single * Description:This parameter is the offsetScreen Y.
** {{wiki:PublicMethod.gif|}} Pan(Single,Int32) ** * //This function will pan the currentExtent based on an angle and percentage.// == Remarks == * //This method will change the current extent by panning according to the angle and percentage specified.// == Return Value == * Type:Void * Description:N/A == Parameters == * //degree// * Type:Single * Description:This parameter is the degree (angle) in which you want to pan. * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to pan.
** {{wiki:PublicMethod.gif|}} Pan(PanDirection,Int32) ** * //This function will pan the currentExtent based on a direction and percentage.// == Remarks == * //This method will change the current extent by panning according to the direction and percentage specified.// == Return Value == * Type:Void * Description:N/A == Parameters == * //panDirection// * Type:[[ThinkGeo.MapSuite.Core.PanDirection|PanDirection]] * Description:This parameter is the direction in which you want to pan. * //percentage// * Type:Int32 * Description:This parameter is the percentage by which you want to pan.
** {{wiki:PublicMethod.gif|}} CenterAt(Feature) ** * //This function will center the currentExtent based on the specified center feature.// == Remarks == * //This method will change the current extent by centering on the target centerFeature.// == Return Value == * Type:Void * Description:N/A == Parameters == * //centerFeature// * Type:[[ThinkGeo.MapSuite.Core.Feature|Feature]] * Description:This parameter is the feature you want to center on.
** {{wiki:PublicMethod.gif|}} CenterAt(Single,Single) ** * //This function will center the currentExtent based on the specified screenX and screenY.// == Remarks == * //This method will change the current extent by centering on the screenX and screenY coordinates you provide.// == Return Value == * Type:Void * Description:N/A == Parameters == * //screenX// * Type:Single * Description:This parameter is the screen X coordinate to center on. * //screenY// * Type:Single * Description:This parameter is the screen Y coordinate to center on.
** {{wiki:PublicMethod.gif|}} CenterAt(PointShape) ** * //This function will center the currentExtent on the specified worldPoint.// == Remarks == * //This method will change the current extent by centering on the worldPoint you provide.// == Return Value == * Type:Void * Description:N/A == Parameters == * //worldPoint// * Type:[[ThinkGeo.MapSuite.Core.PointShape|PointShape]] * Description:This parameter is the world point you want to center on.
** {{wiki:PublicMethod.gif|}} CenterAt(ScreenPointF) ** * //This function will center the currentExtent based on the specified screenPoint.// == Remarks == * //This method will change the current extent by centering on the screenPoint you provide.// == Return Value == * Type:Void * Description:N/A == Parameters == * //screenPoint// * Type:[[ThinkGeo.MapSuite.Core.ScreenPointF|ScreenPointF]] * Description:This parameter is the screen point you want to center on.
** {{wiki:PublicMethod.gif|}} FindFeatureLayer(String) ** * //This method will search all overlays for a feature layer that has a given layer key.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#FindFeatureLayer.28String.29// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.FeatureLayer|FeatureLayer]] * Description:FeatureLayer with the specified key, or Null if nothing was found. == Parameters == * //key// * Type:String * Description:This parameter specifies the key for the returning feature layer.
** {{wiki:PublicMethod.gif|}} FindRasterLayer(String) ** * //This method will search all overlays for a raster layer that has a given layer key.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#FindRasterLayer.28String.29// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.RasterLayer|RasterLayer]] * Description:RasterLayer with the specified key, or Null if nothing was found. == Parameters == * //key// * Type:String * Description:This parameter specifies the key for the returning raster layer.
** {{wiki:PublicMethod.gif|}} ZoomToPreviousExtent() ** * //Reverts the MapControl to the previous extent.// == Remarks == * //The MapControl keeps track of all of its previous extents so you can go back one (or more) any time you want.// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ToggleMapExtents() ** * //Switch the MapControl's CurrentExtent between the current and previous extent.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ToggleMapExtents.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Refresh() ** * //This API will refresh all of the overlays. This overload's logic is slightly different from other overloads in that it will clear the screen bitmaps and will not delete the tiles if they already exist. If you only want to refresh certain specified overlays, please use the other overloads and pass them into it.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Refresh.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Refresh(Overlay) ** * //This API will refresh only one specified overlay. This overload has the same logic as the overloads that accept a group of overlays, but is different from overloads that do not accept parameters. It will delete any tiles that already exist for the specified overlay and will keep the screen bitmaps for other overlays.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Refresh.28Overlay.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //redrawOverlay// * Type:[[ThinkGeo.MapSuite.DesktopEdition.Overlay|Overlay]] * Description:N/A
** {{wiki:PublicMethod.gif|}} Refresh(IEnumerable) ** * //This API will refresh only the specified overlays. This overload has the same logic as the overloads that accept a single specified overlay, but is different from overloads that do not accept parameters. It will delete any tiles that already exist for the specified overlays and will keep the screen bitmaps for other overlays.// == Remarks == * //For the most updated Info for this topic, please check it here:// == Return Value == * Type:Void * Description:N/A == Parameters == * //redrawOverlays// * Type:IEnumerable<[[ThinkGeo.MapSuite.DesktopEdition.Overlay|Overlay]]> * Description:N/A
** {{wiki:PublicMethod.gif|}} ShouldSerializeChildren() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeChildren.28.29// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ShouldSerializeStyle() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeStyle.28.29// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ApplyTemplate() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ApplyTemplate.28.29// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} OnApplyTemplate() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnApplyTemplate.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} BeginStoryboard(Storyboard) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#BeginStoryboard.28Storyboard.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //storyboard// * Type:Storyboard * Description:N/A
** {{wiki:PublicMethod.gif|}} BeginStoryboard(Storyboard,HandoffBehavior) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#BeginStoryboard.28Storyboard.2C_HandoffBehavior.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //storyboard// * Type:Storyboard * Description:N/A * //handoffBehavior// * Type:HandoffBehavior * Description:N/A
** {{wiki:PublicMethod.gif|}} BeginStoryboard(Storyboard,HandoffBehavior,Boolean) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#BeginStoryboard.28Storyboard.2C_HandoffBehavior.2C_Boolean.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //storyboard// * Type:Storyboard * Description:N/A * //handoffBehavior// * Type:HandoffBehavior * Description:N/A * //isControllable// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} ShouldSerializeTriggers() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeTriggers.28.29// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ShouldSerializeResources() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeResources.28.29// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} FindResource(Object) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#FindResource.28Object.29// == Return Value == * Type:Object * Description:N/A == Parameters == * //resourceKey// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} TryFindResource(Object) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#TryFindResource.28Object.29// == Return Value == * Type:Object * Description:N/A == Parameters == * //resourceKey// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} SetResourceReference(DependencyProperty,Object) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#SetResourceReference.28DependencyProperty.2C_Object.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //name// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} GetBindingExpression(DependencyProperty) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#GetBindingExpression.28DependencyProperty.29// == Return Value == * Type:BindingExpression * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:PublicMethod.gif|}} SetBinding(DependencyProperty,BindingBase) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#SetBinding.28DependencyProperty.2C_BindingBase.29// == Return Value == * Type:BindingExpressionBase * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //binding// * Type:BindingBase * Description:N/A
** {{wiki:PublicMethod.gif|}} SetBinding(DependencyProperty,String) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#SetBinding.28DependencyProperty.2C_String.29// == Return Value == * Type:BindingExpression * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //path// * Type:String * Description:N/A
** {{wiki:PublicMethod.gif|}} BringIntoView() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#BringIntoView.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} BringIntoView(Rect) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#BringIntoView.28Rect.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //targetRectangle// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} MoveFocus(TraversalRequest) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#MoveFocus.28TraversalRequest.29// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //request// * Type:TraversalRequest * Description:N/A
** {{wiki:PublicMethod.gif|}} PredictFocus(FocusNavigationDirection) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#PredictFocus.28FocusNavigationDirection.29// == Return Value == * Type:DependencyObject * Description:N/A == Parameters == * //direction// * Type:FocusNavigationDirection * Description:N/A
** {{wiki:PublicMethod.gif|}} BeginInit() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#BeginInit.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} EndInit() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#EndInit.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} RegisterName(String,Object) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#RegisterName.28String.2C_Object.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //name// * Type:String * Description:N/A * //scopedElement// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} UnregisterName(String) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#UnregisterName.28String.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //name// * Type:String * Description:N/A
** {{wiki:PublicMethod.gif|}} FindName(String) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#FindName.28String.29// == Return Value == * Type:Object * Description:N/A == Parameters == * //name// * Type:String * Description:N/A
** {{wiki:PublicMethod.gif|}} UpdateDefaultStyle() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#UpdateDefaultStyle.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ApplyAnimationClock(DependencyProperty,AnimationClock) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ApplyAnimationClock.28DependencyProperty.2C_AnimationClock.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //clock// * Type:AnimationClock * Description:N/A
** {{wiki:PublicMethod.gif|}} ApplyAnimationClock(DependencyProperty,AnimationClock,HandoffBehavior) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ApplyAnimationClock.28DependencyProperty.2C_AnimationClock.2C_HandoffBehavior.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //clock// * Type:AnimationClock * Description:N/A * //handoffBehavior// * Type:HandoffBehavior * Description:N/A
** {{wiki:PublicMethod.gif|}} BeginAnimation(DependencyProperty,AnimationTimeline) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#BeginAnimation.28DependencyProperty.2C_AnimationTimeline.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //animation// * Type:AnimationTimeline * Description:N/A
** {{wiki:PublicMethod.gif|}} BeginAnimation(DependencyProperty,AnimationTimeline,HandoffBehavior) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#BeginAnimation.28DependencyProperty.2C_AnimationTimeline.2C_HandoffBehavior.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //animation// * Type:AnimationTimeline * Description:N/A * //handoffBehavior// * Type:HandoffBehavior * Description:N/A
** {{wiki:PublicMethod.gif|}} GetAnimationBaseValue(DependencyProperty) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#GetAnimationBaseValue.28DependencyProperty.29// == Return Value == * Type:Object * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:PublicMethod.gif|}} ShouldSerializeInputBindings() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeInputBindings.28.29// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ShouldSerializeCommandBindings() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeCommandBindings.28.29// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} RaiseEvent(RoutedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#RaiseEvent.28RoutedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:RoutedEventArgs * Description:N/A
** {{wiki:PublicMethod.gif|}} AddHandler(RoutedEvent,Delegate) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AddHandler.28RoutedEvent.2C_Delegate.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //routedEvent// * Type:RoutedEvent * Description:N/A * //handler// * Type:Delegate * Description:N/A
** {{wiki:PublicMethod.gif|}} AddHandler(RoutedEvent,Delegate,Boolean) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AddHandler.28RoutedEvent.2C_Delegate.2C_Boolean.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //routedEvent// * Type:RoutedEvent * Description:N/A * //handler// * Type:Delegate * Description:N/A * //handledEventsToo// * Type:Boolean * Description:N/A
** {{wiki:PublicMethod.gif|}} RemoveHandler(RoutedEvent,Delegate) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#RemoveHandler.28RoutedEvent.2C_Delegate.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //routedEvent// * Type:RoutedEvent * Description:N/A * //handler// * Type:Delegate * Description:N/A
** {{wiki:PublicMethod.gif|}} AddToEventRoute(EventRoute,RoutedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AddToEventRoute.28EventRoute.2C_RoutedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //route// * Type:EventRoute * Description:N/A * //e// * Type:RoutedEventArgs * Description:N/A
** {{wiki:PublicMethod.gif|}} InvalidateMeasure() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#InvalidateMeasure.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} InvalidateArrange() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#InvalidateArrange.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} InvalidateVisual() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#InvalidateVisual.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Measure(Size) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Measure.28Size.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //availableSize// * Type:Size * Description:N/A
** {{wiki:PublicMethod.gif|}} Arrange(Rect) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Arrange.28Rect.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //finalRect// * Type:Rect * Description:N/A
** {{wiki:PublicMethod.gif|}} UpdateLayout() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#UpdateLayout.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} TranslatePoint(Point,UIElement) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#TranslatePoint.28Point.2C_UIElement.29// == Return Value == * Type:Point * Description:N/A == Parameters == * //point// * Type:Point * Description:N/A * //relativeTo// * Type:UIElement * Description:N/A
** {{wiki:PublicMethod.gif|}} InputHitTest(Point) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#InputHitTest.28Point.29// == Return Value == * Type:IInputElement * Description:N/A == Parameters == * //point// * Type:Point * Description:N/A
** {{wiki:PublicMethod.gif|}} CaptureMouse() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#CaptureMouse.28.29// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ReleaseMouseCapture() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ReleaseMouseCapture.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CaptureStylus() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#CaptureStylus.28.29// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ReleaseStylusCapture() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ReleaseStylusCapture.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Focus() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Focus.28.29// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CaptureTouch(TouchDevice) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#CaptureTouch.28TouchDevice.29// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //touchDevice// * Type:TouchDevice * Description:N/A
** {{wiki:PublicMethod.gif|}} ReleaseTouchCapture(TouchDevice) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ReleaseTouchCapture.28TouchDevice.29// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //touchDevice// * Type:TouchDevice * Description:N/A
** {{wiki:PublicMethod.gif|}} ReleaseAllTouchCaptures() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ReleaseAllTouchCaptures.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} IsAncestorOf(DependencyObject) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsAncestorOf.28DependencyObject.29// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //descendant// * Type:DependencyObject * Description:N/A
** {{wiki:PublicMethod.gif|}} IsDescendantOf(DependencyObject) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsDescendantOf.28DependencyObject.29// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //ancestor// * Type:DependencyObject * Description:N/A
** {{wiki:PublicMethod.gif|}} FindCommonVisualAncestor(DependencyObject) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#FindCommonVisualAncestor.28DependencyObject.29// == Return Value == * Type:DependencyObject * Description:N/A == Parameters == * //otherVisual// * Type:DependencyObject * Description:N/A
** {{wiki:PublicMethod.gif|}} TransformToAncestor(Visual) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#TransformToAncestor.28Visual.29// == Return Value == * Type:GeneralTransform * Description:N/A == Parameters == * //ancestor// * Type:Visual * Description:N/A
** {{wiki:PublicMethod.gif|}} TransformToAncestor(Visual3D) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#TransformToAncestor.28Visual3D.29// == Return Value == * Type:GeneralTransform2DTo3D * Description:N/A == Parameters == * //ancestor// * Type:Visual3D * Description:N/A
** {{wiki:PublicMethod.gif|}} TransformToDescendant(Visual) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#TransformToDescendant.28Visual.29// == Return Value == * Type:GeneralTransform * Description:N/A == Parameters == * //descendant// * Type:Visual * Description:N/A
** {{wiki:PublicMethod.gif|}} TransformToVisual(Visual) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#TransformToVisual.28Visual.29// == Return Value == * Type:GeneralTransform * Description:N/A == Parameters == * //visual// * Type:Visual * Description:N/A
** {{wiki:PublicMethod.gif|}} PointToScreen(Point) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#PointToScreen.28Point.29// == Return Value == * Type:Point * Description:N/A == Parameters == * //point// * Type:Point * Description:N/A
** {{wiki:PublicMethod.gif|}} PointFromScreen(Point) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#PointFromScreen.28Point.29// == Return Value == * Type:Point * Description:N/A == Parameters == * //point// * Type:Point * Description:N/A
** {{wiki:PublicMethod.gif|}} Equals(Object) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Equals.28Object.29// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //obj// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} GetHashCode() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#GetHashCode.28.29// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetValue(DependencyProperty) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#GetValue.28DependencyProperty.29// == Return Value == * Type:Object * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:PublicMethod.gif|}} SetValue(DependencyProperty,Object) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#SetValue.28DependencyProperty.2C_Object.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //value// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} SetCurrentValue(DependencyProperty,Object) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#SetCurrentValue.28DependencyProperty.2C_Object.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //value// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} SetValue(DependencyPropertyKey,Object) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#SetValue.28DependencyPropertyKey.2C_Object.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //key// * Type:DependencyPropertyKey * Description:N/A * //value// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} ClearValue(DependencyProperty) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ClearValue.28DependencyProperty.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:PublicMethod.gif|}} ClearValue(DependencyPropertyKey) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ClearValue.28DependencyPropertyKey.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //key// * Type:DependencyPropertyKey * Description:N/A
** {{wiki:PublicMethod.gif|}} CoerceValue(DependencyProperty) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#CoerceValue.28DependencyProperty.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:PublicMethod.gif|}} InvalidateProperty(DependencyProperty) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#InvalidateProperty.28DependencyProperty.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:PublicMethod.gif|}} ReadLocalValue(DependencyProperty) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ReadLocalValue.28DependencyProperty.29// == Return Value == * Type:Object * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:PublicMethod.gif|}} GetLocalValueEnumerator() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#GetLocalValueEnumerator.28.29// == Return Value == * Type:LocalValueEnumerator * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} CheckAccess() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#CheckAccess.28.29// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} VerifyAccess() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#VerifyAccess.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} ToString() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ToString.28.29// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetType() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#GetType.28.29// == Return Value == * Type:Type * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}}{{wiki:Static.gif|}} GetVersion() ** * //This static method will be useful when you want to report a bug in a specified version of Map Suite. You can use it to tell ThinkGeo support which version you are trying to use.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#GetVersion.28.29// == Return Value == * Type:String * Description:A string representing the version of the MapSuiteCore and Map Suite Desktop product that you are now using. == Parameters ==
==== Protected Methods ==== ** {{wiki:ProtectedMethod.gif|}} OnMapClick(MapClickWpfMapEventArgs) ** * //This event is raised when clicking on the map without any mouse movement (dragging).// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMapClick.28MapClickWpfMapEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.DesktopEdition.MapClickWpfMapEventArgs|MapClickWpfMapEventArgs]] * Description:The WinformsMapClickEventArgs passed for the event raised.
** {{wiki:ProtectedMethod.gif|}} OnOverlaysDrawing(OverlaysDrawingWpfMapEventArgs) ** * //This event will be fired before the Overlays are drawn.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnOverlaysDrawing.28OverlaysDrawingWpfMapEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.DesktopEdition.OverlaysDrawingWpfMapEventArgs|OverlaysDrawingWpfMapEventArgs]] * Description:The OverlaysDrawingEventArgs passed for the event raised.
** {{wiki:ProtectedMethod.gif|}} OnOverlaysDrawn(OverlaysDrawnWpfMapEventArgs) ** * //This event will be fired after the Overlays have been drawn.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnOverlaysDrawn.28OverlaysDrawnWpfMapEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.DesktopEdition.OverlaysDrawnWpfMapEventArgs|OverlaysDrawnWpfMapEventArgs]] * Description:The OverlaysDrawingEventArgs passed for the event raised.
** {{wiki:ProtectedMethod.gif|}} OnOverlayDrawing(OverlayDrawingWpfMapEventArgs) ** * //This event will be fired before the Overlay is drawn.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnOverlayDrawing.28OverlayDrawingWpfMapEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.DesktopEdition.OverlayDrawingWpfMapEventArgs|OverlayDrawingWpfMapEventArgs]] * Description:The OverlayDrawingEventArgs passed for the event raised.
** {{wiki:ProtectedMethod.gif|}} OnOverlayDrawn(OverlayDrawnWpfMapEventArgs) ** * //This event will be fired after the Overlay has been drawn.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnOverlayDrawn.28OverlayDrawnWpfMapEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.DesktopEdition.OverlayDrawnWpfMapEventArgs|OverlayDrawnWpfMapEventArgs]] * Description:The OverlayDrawingEventArgs passed for the event raised.
** {{wiki:ProtectedMethod.gif|}} OnCurrentScaleChanged(CurrentScaleChangedWpfMapEventArgs) ** * //Raised when the CurrentScale of the map changes.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnCurrentScaleChanged.28CurrentScaleChangedWpfMapEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.DesktopEdition.CurrentScaleChangedWpfMapEventArgs|CurrentScaleChangedWpfMapEventArgs]] * Description:The CurrentScaleChangedEventArgs passed for the event raised.
** {{wiki:ProtectedMethod.gif|}} OnCurrentExtentChanged(CurrentExtentChangedWpfMapEventArgs) ** * //Raised when the CurrentExtent of the map changes.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnCurrentExtentChanged.28CurrentExtentChangedWpfMapEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.DesktopEdition.CurrentExtentChangedWpfMapEventArgs|CurrentExtentChangedWpfMapEventArgs]] * Description:The CurrentExtentChangedEventArgs passed for the event raised.
** {{wiki:ProtectedMethod.gif|}} OnCurrentScaleChanging(CurrentScaleChangingWpfMapEventArgs) ** * //Raised before the CurrentScale of the map changes.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnCurrentScaleChanging.28CurrentScaleChangingWpfMapEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.DesktopEdition.CurrentScaleChangingWpfMapEventArgs|CurrentScaleChangingWpfMapEventArgs]] * Description:The CurrentScaleChangingEventArgs passed for the event raised.
** {{wiki:ProtectedMethod.gif|}} OnCurrentExtentChanging(CurrentExtentChangingWpfMapEventArgs) ** * //Raised before the CurrentExtent of the map changes.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnCurrentExtentChanging.28CurrentExtentChangingWpfMapEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.DesktopEdition.CurrentExtentChangingWpfMapEventArgs|CurrentExtentChangingWpfMapEventArgs]] * Description:The CurrentExtentChangingEventArgs passed for the event raised.
** {{wiki:ProtectedMethod.gif|}} OnRender(DrawingContext) ** * //Overrides the OnRender function in the Canvas which the WpfMap Control inherits from.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnRender.28DrawingContext.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //dc// * Type:DrawingContext * Description:The DrawingContext on which the BitmapSource is to be drawn.
** {{wiki:ProtectedMethod.gif|}} Finalize() ** * //The deserializer of the WpfMap Control.// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Finalize.28.29// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} MeasureOverride(Size) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#MeasureOverride.28Size.29// == Return Value == * Type:Size * Description:N/A == Parameters == * //constraint// * Type:Size * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ArrangeOverride(Size) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ArrangeOverride.28Size.29// == Return Value == * Type:Size * Description:N/A == Parameters == * //arrangeSize// * Type:Size * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetLayoutClip(Size) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#GetLayoutClip.28Size.29// == Return Value == * Type:Geometry * Description:N/A == Parameters == * //layoutSlotSize// * Type:Size * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnIsItemsHostChanged(Boolean,Boolean) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsItemsHostChanged.28Boolean.2C_Boolean.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //oldIsItemsHost// * Type:Boolean * Description:N/A * //newIsItemsHost// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetVisualChild(Int32) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#GetVisualChild.28Int32.29// == Return Value == * Type:Visual * Description:N/A == Parameters == * //index// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CreateUIElementCollection(FrameworkElement) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#CreateUIElementCollection.28FrameworkElement.29// == Return Value == * Type:UIElementCollection * Description:N/A == Parameters == * //logicalParent// * Type:FrameworkElement * Description:N/A
** {{wiki:ProtectedMethod.gif|}} EnsureGenerator() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnClearChildrenInternal() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GenerateChildren() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnItemsChangedInternal(Object,ItemsChangedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //args// * Type:ItemsChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnVisualChildrenChanged(DependencyObject,DependencyObject) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //visualAdded// * Type:DependencyObject * Description:N/A * //visualRemoved// * Type:DependencyObject * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InvalidateZState() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnTemplateChangedInternal(FrameworkTemplate,FrameworkTemplate) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //oldTemplate// * Type:FrameworkTemplate * Description:N/A * //newTemplate// * Type:FrameworkTemplate * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStyleChanged(Style,Style) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //oldStyle// * Type:Style * Description:N/A * //newStyle// * Type:Style * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ParentLayoutInvalidated(UIElement) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:UIElement * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreApplyTemplate() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnPostApplyTemplate() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetTemplateChild(String) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObject * Description:N/A == Parameters == * //childName// * Type:String * Description:N/A
** {{wiki:ProtectedMethod.gif|}} HasNonDefaultValue(DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} EvaluateBaseValueCore(DependencyProperty,PropertyMetadata,EffectiveValueEntry&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //metadata// * Type:PropertyMetadata * Description:N/A * //newEntry// * Type:EffectiveValueEntry& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetRawValue(DependencyProperty,PropertyMetadata,EffectiveValueEntry&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //metadata// * Type:PropertyMetadata * Description:N/A * //entry// * Type:EffectiveValueEntry& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetExpressionCore(DependencyProperty,PropertyMetadata) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Expression * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //metadata// * Type:PropertyMetadata * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPropertyChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPropertyChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetPlainText() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} pushTextRenderingMode() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnAncestorChanged() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnVisualParentChanged(DependencyObject) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //oldParent// * Type:DependencyObject * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnVisualAncestorChanged(Object,AncestorChangedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //e// * Type:AncestorChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetUIParentCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObject * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} AdjustEventSource(RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters == * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AdjustBranchSource(RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} BuildRouteCore(EventRoute,RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //route// * Type:EventRoute * Description:N/A * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} BuildRouteCoreHelper(EventRoute,RoutedEventArgs,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //route// * Type:EventRoute * Description:N/A * //args// * Type:RoutedEventArgs * Description:N/A * //shouldAddIntermediateElementsToRoute// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AddToEventRouteCore(EventRoute,RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //route// * Type:EventRoute * Description:N/A * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} IgnoreModelParentBuildRoute(RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InvalidateAutomationAncestorsCore(Stack,Boolean&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //branchNodeStack// * Type:Stack * Description:N/A * //continuePastCoreTree// * Type:Boolean& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InvalidateAutomationAncestorsCoreHelper(Stack,Boolean&,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //branchNodeStack// * Type:Stack * Description:N/A * //continuePastCoreTree// * Type:Boolean& * Description:N/A * //shouldInvalidateIntermediateElements// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} MeasureCore(Size) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#MeasureCore.28Size.29// == Return Value == * Type:Size * Description:N/A == Parameters == * //availableSize// * Type:Size * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ArrangeCore(Rect) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ArrangeCore.28Rect.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //finalRect// * Type:Rect * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnRenderSizeChanged(SizeChangedInfo) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sizeInfo// * Type:SizeChangedInfo * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetLayoutClipInternal() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Geometry * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnGotFocus(RoutedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGotFocus.28RoutedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnInitialized(EventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnInitialized.28EventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPresentationSourceChanged(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //attached// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnAddHandler(RoutedEvent,Delegate) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //routedEvent// * Type:RoutedEvent * Description:N/A * //handler// * Type:Delegate * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnRemoveHandler(RoutedEvent,Delegate) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //routedEvent// * Type:RoutedEvent * Description:N/A * //handler// * Type:Delegate * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnLoaded(RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnUnloaded(RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AddSynchronizedInputPreOpportunityHandlerCore(EventRoute,RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //route// * Type:EventRoute * Description:N/A * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RaiseClrEvent(EventPrivateKey,EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //key// * Type:EventPrivateKey * Description:N/A * //args// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnToolTipOpening(ToolTipEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnToolTipOpening.28ToolTipEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:ToolTipEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnToolTipClosing(ToolTipEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnToolTipClosing.28ToolTipEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:ToolTipEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnContextMenuOpening(ContextMenuEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnContextMenuOpening.28ContextMenuEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:ContextMenuEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnContextMenuClosing(ContextMenuEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnContextMenuClosing.28ContextMenuEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:ContextMenuEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} EventHandlersStoreAdd(EventPrivateKey,Delegate) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //key// * Type:EventPrivateKey * Description:N/A * //handler// * Type:Delegate * Description:N/A
** {{wiki:ProtectedMethod.gif|}} EventHandlersStoreRemove(EventPrivateKey,Delegate) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //key// * Type:EventPrivateKey * Description:N/A * //handler// * Type:Delegate * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ReadInternalFlag(InternalFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //reqFlag// * Type:InternalFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ReadInternalFlag2(InternalFlags2) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //reqFlag// * Type:InternalFlags2 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} WriteInternalFlag(InternalFlags,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //reqFlag// * Type:InternalFlags * Description:N/A * //set// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} WriteInternalFlag2(InternalFlags2,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //reqFlag// * Type:InternalFlags2 * Description:N/A * //set// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} FindName(String,DependencyObject&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters == * //name// * Type:String * Description:N/A * //scopeOwner// * Type:DependencyObject& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} FindResourceOnSelf(Object,Boolean,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters == * //resourceKey// * Type:Object * Description:N/A * //allowDeferredResourceReference// * Type:Boolean * Description:N/A * //mustReturnDeferredResourceReference// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ContextVerifiedGetParent() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObject * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} AddLogicalChild(Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:Object * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RemoveLogicalChild(Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:Object * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ChangeLogicalParent(DependencyObject) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //newParent// * Type:DependencyObject * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnNewParent(DependencyObject) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //newParent// * Type:DependencyObject * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnAncestorChangedInternal(TreeChangeInfo) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //parentTreeState// * Type:TreeChangeInfo * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InvalidateTreeDependentProperties(TreeChangeInfo,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:FrugalObjectList * Description:N/A == Parameters == * //parentTreeState// * Type:TreeChangeInfo * Description:N/A * //isSelfInheritanceParent// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} UpdateStyleProperty() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} UpdateThemeStyleProperty() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnThemeChanged() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} FireLoadedOnDescendentsInternal() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} FireUnloadedOnDescendentsInternal() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} ShouldProvideInheritanceContext(DependencyObject,DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //target// * Type:DependencyObject * Description:N/A * //property// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AddInheritanceContext(DependencyObject,DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //context// * Type:DependencyObject * Description:N/A * //property// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RemoveInheritanceContext(DependencyObject,DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //context// * Type:DependencyObject * Description:N/A * //property// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnInheritanceContextChangedCore(EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ChangeSubtreeHasLoadedChangedHandler(DependencyObject) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //mentor// * Type:DependencyObject * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RaiseInheritedPropertyChangedEvent(InheritablePropertyChangeInfo&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //info// * Type:InheritablePropertyChangeInfo& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} EvaluateAnimatedValueCore(DependencyProperty,PropertyMetadata,EffectiveValueEntry&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //metadata// * Type:PropertyMetadata * Description:N/A * //entry// * Type:EffectiveValueEntry& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} BuildRoute(EventRoute,RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //route// * Type:EventRoute * Description:N/A * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RaiseEvent(RoutedEventArgs,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:RoutedEventArgs * Description:N/A * //trusted// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RaiseTrustedEvent(RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} EnsureEventHandlersStore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnPreviewMouseDown(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseDown.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnMouseDown(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseDown.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewMouseUp(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseUp.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnMouseUp(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseUp.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewMouseLeftButtonDown(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseLeftButtonDown.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnMouseLeftButtonDown(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseLeftButtonDown.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewMouseLeftButtonUp(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseLeftButtonUp.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnMouseLeftButtonUp(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseLeftButtonUp.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewMouseRightButtonDown(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseRightButtonDown.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnMouseRightButtonDown(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseRightButtonDown.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewMouseRightButtonUp(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseRightButtonUp.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnMouseRightButtonUp(MouseButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseRightButtonUp.28MouseButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewMouseMove(MouseEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseMove.28MouseEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnMouseMove(MouseEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseMove.28MouseEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewMouseWheel(MouseWheelEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseWheel.28MouseWheelEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseWheelEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnMouseWheel(MouseWheelEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseWheel.28MouseWheelEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseWheelEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnMouseEnter(MouseEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseEnter.28MouseEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnMouseLeave(MouseEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseLeave.28MouseEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnGotMouseCapture(MouseEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGotMouseCapture.28MouseEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnLostMouseCapture(MouseEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnLostMouseCapture.28MouseEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:MouseEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnQueryCursor(QueryCursorEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnQueryCursor.28QueryCursorEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:QueryCursorEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewStylusDown(StylusDownEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusDown.28StylusDownEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusDownEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStylusDown(StylusDownEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusDown.28StylusDownEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusDownEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewStylusUp(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusUp.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStylusUp(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusUp.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewStylusMove(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusMove.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStylusMove(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusMove.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewStylusInAirMove(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusInAirMove.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStylusInAirMove(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusInAirMove.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStylusEnter(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusEnter.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStylusLeave(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusLeave.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewStylusInRange(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusInRange.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStylusInRange(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusInRange.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewStylusOutOfRange(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusOutOfRange.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStylusOutOfRange(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusOutOfRange.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewStylusSystemGesture(StylusSystemGestureEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusSystemGesture.28StylusSystemGestureEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusSystemGestureEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStylusSystemGesture(StylusSystemGestureEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusSystemGesture.28StylusSystemGestureEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusSystemGestureEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnGotStylusCapture(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGotStylusCapture.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnLostStylusCapture(StylusEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnLostStylusCapture.28StylusEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStylusButtonDown(StylusButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusButtonDown.28StylusButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnStylusButtonUp(StylusButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusButtonUp.28StylusButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewStylusButtonDown(StylusButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusButtonDown.28StylusButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewStylusButtonUp(StylusButtonEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusButtonUp.28StylusButtonEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:StylusButtonEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewKeyDown(KeyEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewKeyDown.28KeyEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:KeyEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnKeyDown(KeyEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnKeyDown.28KeyEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:KeyEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewKeyUp(KeyEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewKeyUp.28KeyEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:KeyEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnKeyUp(KeyEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnKeyUp.28KeyEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:KeyEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewGotKeyboardFocus(KeyboardFocusChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewGotKeyboardFocus.28KeyboardFocusChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:KeyboardFocusChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnGotKeyboardFocus(KeyboardFocusChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGotKeyboardFocus.28KeyboardFocusChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:KeyboardFocusChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewLostKeyboardFocus(KeyboardFocusChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewLostKeyboardFocus.28KeyboardFocusChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:KeyboardFocusChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnLostKeyboardFocus(KeyboardFocusChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnLostKeyboardFocus.28KeyboardFocusChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:KeyboardFocusChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewTextInput(TextCompositionEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTextInput.28TextCompositionEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TextCompositionEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnTextInput(TextCompositionEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnTextInput.28TextCompositionEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TextCompositionEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewQueryContinueDrag(QueryContinueDragEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewQueryContinueDrag.28QueryContinueDragEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:QueryContinueDragEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnQueryContinueDrag(QueryContinueDragEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnQueryContinueDrag.28QueryContinueDragEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:QueryContinueDragEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewGiveFeedback(GiveFeedbackEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewGiveFeedback.28GiveFeedbackEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:GiveFeedbackEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnGiveFeedback(GiveFeedbackEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGiveFeedback.28GiveFeedbackEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:GiveFeedbackEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewDragEnter(DragEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewDragEnter.28DragEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DragEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDragEnter(DragEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnDragEnter.28DragEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DragEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewDragOver(DragEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewDragOver.28DragEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DragEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDragOver(DragEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnDragOver.28DragEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DragEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewDragLeave(DragEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewDragLeave.28DragEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DragEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDragLeave(DragEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnDragLeave.28DragEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DragEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewDrop(DragEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewDrop.28DragEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DragEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnDrop(DragEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnDrop.28DragEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DragEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewTouchDown(TouchEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTouchDown.28TouchEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TouchEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnTouchDown(TouchEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnTouchDown.28TouchEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TouchEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewTouchMove(TouchEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTouchMove.28TouchEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TouchEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnTouchMove(TouchEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnTouchMove.28TouchEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TouchEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnPreviewTouchUp(TouchEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTouchUp.28TouchEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TouchEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnTouchUp(TouchEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnTouchUp.28TouchEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TouchEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnGotTouchCapture(TouchEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGotTouchCapture.28TouchEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TouchEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnLostTouchCapture(TouchEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnLostTouchCapture.28TouchEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TouchEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnTouchEnter(TouchEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnTouchEnter.28TouchEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TouchEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnTouchLeave(TouchEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnTouchLeave.28TouchEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:TouchEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnIsMouseDirectlyOverChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsMouseDirectlyOverChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnIsKeyboardFocusWithinChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsKeyboardFocusWithinChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RaiseIsKeyboardFocusWithinChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnIsMouseCapturedChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsMouseCapturedChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnIsMouseCaptureWithinChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsMouseCaptureWithinChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RaiseIsMouseCaptureWithinChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnIsStylusDirectlyOverChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsStylusDirectlyOverChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnIsStylusCapturedChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsStylusCapturedChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnIsStylusCaptureWithinChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsStylusCaptureWithinChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RaiseIsStylusCaptureWithinChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnIsKeyboardFocusedChanged(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsKeyboardFocusedChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ReadFlag(CoreFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //field// * Type:CoreFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} WriteFlag(CoreFlags,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //field// * Type:CoreFlags * Description:N/A * //value// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InvalidateMeasureInternal() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} InvalidateArrangeInternal() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnChildDesiredSizeChanged(UIElement) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnChildDesiredSizeChanged.28UIElement.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:UIElement * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetUIParentOrICH(UIElement&,IContentHost&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //uiParent// * Type:UIElement& * Description:N/A * //ich// * Type:IContentHost& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetUIParentWithinLayoutIsland() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:UIElement * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetHitTestBounds() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Rect * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnVisualAncestorChanged(Object,AncestorChangedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //e// * Type:AncestorChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetUIParent() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObject * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetUIParent(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObject * Description:N/A == Parameters == * //continuePastVisualTree// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetUIParentNo3DTraversal() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObject * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} AddSynchronizedInputPreOpportunityHandler(EventRoute,RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //route// * Type:EventRoute * Description:N/A * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AddSynchronizedInputPostOpportunityHandler(EventRoute,RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //route// * Type:EventRoute * Description:N/A * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SynchronizedInputPreOpportunityHandler(Object,RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SynchronizedInputPostOpportunityHandler(Object,RoutedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //args// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} StartListeningSynchronizedInput(SynchronizedInputType) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //inputType// * Type:SynchronizedInputType * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CancelSynchronizedInput() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} InputHitTest(Point,IInputElement&,IInputElement&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //pt// * Type:Point * Description:N/A * //enabledHit// * Type:IInputElement& * Description:N/A * //rawHit// * Type:IInputElement& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InputHitTest(Point,IInputElement&,IInputElement&,HitTestResult&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //pt// * Type:Point * Description:N/A * //enabledHit// * Type:IInputElement& * Description:N/A * //rawHit// * Type:IInputElement& * Description:N/A * //rawHitResult// * Type:HitTestResult& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SynchronizeReverseInheritPropertyFlags(DependencyObject,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //oldParent// * Type:DependencyObject * Description:N/A * //isCoreParent// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} BlockReverseInheritance() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnAccessKey(AccessKeyEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnAccessKey.28AccessKeyEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:AccessKeyEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} HitTestCore(PointHitTestParameters) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#HitTestCore.28PointHitTestParameters.29// == Return Value == * Type:HitTestResult * Description:N/A == Parameters == * //hitTestParameters// * Type:PointHitTestParameters * Description:N/A
** {{wiki:ProtectedMethod.gif|}} HitTestCore(GeometryHitTestParameters) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#HitTestCore.28GeometryHitTestParameters.29// == Return Value == * Type:GeometryHitTestResult * Description:N/A == Parameters == * //hitTestParameters// * Type:GeometryHitTestParameters * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RenderOpen() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DrawingContext * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} RenderClose(IDrawingContent) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //newContent// * Type:IDrawingContent * Description:N/A
** {{wiki:ProtectedMethod.gif|}} FreeContent(Channel) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //channel// * Type:Channel * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetContentBounds() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Rect * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} WalkContent(DrawingContextWalker) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //walker// * Type:DrawingContextWalker * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RenderContent(RenderContext,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //ctx// * Type:RenderContext * Description:N/A * //isOnChannel// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetDrawing() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DrawingGroup * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} InvokeAccessKey(AccessKeyEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:AccessKeyEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnLostFocus(RoutedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnLostFocus.28RoutedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:RoutedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} UpdateIsVisibleCache() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} OnCreateAutomationPeer() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnCreateAutomationPeer.28.29// == Return Value == * Type:AutomationPeer * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} CreateAutomationPeer() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:AutomationPeer * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetAutomationPeer() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:AutomationPeer * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} CreateGenericRootAutomationPeer() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:AutomationPeer * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} SetPersistId(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //value// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnManipulationStarting(ManipulationStartingEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationStarting.28ManipulationStartingEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:ManipulationStartingEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnManipulationStarted(ManipulationStartedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationStarted.28ManipulationStartedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:ManipulationStartedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnManipulationDelta(ManipulationDeltaEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationDelta.28ManipulationDeltaEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:ManipulationDeltaEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnManipulationInertiaStarting(ManipulationInertiaStartingEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationInertiaStarting.28ManipulationInertiaStartingEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:ManipulationInertiaStartingEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationBoundaryFeedback.28ManipulationBoundaryFeedbackEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:ManipulationBoundaryFeedbackEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnManipulationCompleted(ManipulationCompletedEventArgs) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationCompleted.28ManipulationCompletedEventArgs.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:ManipulationCompletedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} IsOnChannel(Channel) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //channel// * Type:Channel * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AddRefOnChannelCore(Channel) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ResourceHandle * Description:N/A == Parameters == * //channel// * Type:Channel * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ReleaseOnChannelCore(Channel) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //channel// * Type:Channel * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CalculateSubgraphBoundsInnerSpace() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Rect * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} CalculateSubgraphRenderBoundsInnerSpace() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Rect * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} CalculateSubgraphBoundsInnerSpace(Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Rect * Description:N/A == Parameters == * //renderBounds// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CalculateSubgraphBoundsOuterSpace() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Rect * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} CalculateSubgraphRenderBoundsOuterSpace() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Rect * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} AddRefOnChannelForCyclicBrush(ICyclicBrush,Channel) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //cyclicBrush// * Type:ICyclicBrush * Description:N/A * //channel// * Type:Channel * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ReleaseOnChannelForCyclicBrush(ICyclicBrush,Channel) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //cyclicBrush// * Type:ICyclicBrush * Description:N/A * //channel// * Type:Channel * Description:N/A
** {{wiki:ProtectedMethod.gif|}} VerifyAPIReadOnly() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} VerifyAPIReadOnly(DependencyObject) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //value// * Type:DependencyObject * Description:N/A
** {{wiki:ProtectedMethod.gif|}} VerifyAPIReadWrite() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} VerifyAPIReadWrite(DependencyObject) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //value// * Type:DependencyObject * Description:N/A
** {{wiki:ProtectedMethod.gif|}} Precompute() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} PrecomputeContent() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} PrecomputeRecursive(Rect&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //bboxSubgraph// * Type:Rect& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} Render(RenderContext,UInt32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //ctx// * Type:RenderContext * Description:N/A * //childIndex// * Type:UInt32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RenderRecursive(RenderContext) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //ctx// * Type:RenderContext * Description:N/A
** {{wiki:ProtectedMethod.gif|}} Enter() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} Exit() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} InvalidateHitTestBounds() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} HitTest(Point) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:HitTestResult * Description:N/A == Parameters == * //point// * Type:Point * Description:N/A
** {{wiki:ProtectedMethod.gif|}} HitTest(Point,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:HitTestResult * Description:N/A == Parameters == * //point// * Type:Point * Description:N/A * //include2DOn3D// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} HitTest(HitTestFilterCallback,HitTestResultCallback,HitTestParameters) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //filterCallback// * Type:HitTestFilterCallback * Description:N/A * //resultCallback// * Type:HitTestResultCallback * Description:N/A * //hitTestParameters// * Type:HitTestParameters * Description:N/A
** {{wiki:ProtectedMethod.gif|}} HitTestPoint(HitTestFilterCallback,HitTestResultCallback,PointHitTestParameters) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:HitTestResultBehavior * Description:N/A == Parameters == * //filterCallback// * Type:HitTestFilterCallback * Description:N/A * //resultCallback// * Type:HitTestResultCallback * Description:N/A * //pointParams// * Type:PointHitTestParameters * Description:N/A
** {{wiki:ProtectedMethod.gif|}} TransformToOuterSpace() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:GeneralTransform * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} HitTestGeometry(HitTestFilterCallback,HitTestResultCallback,GeometryHitTestParameters) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:HitTestResultBehavior * Description:N/A == Parameters == * //filterCallback// * Type:HitTestFilterCallback * Description:N/A * //resultCallback// * Type:HitTestResultCallback * Description:N/A * //geometryParams// * Type:GeometryHitTestParameters * Description:N/A
** {{wiki:ProtectedMethod.gif|}} HitTestPointInternal(HitTestFilterCallback,HitTestResultCallback,PointHitTestParameters) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:HitTestResultBehavior * Description:N/A == Parameters == * //filterCallback// * Type:HitTestFilterCallback * Description:N/A * //resultCallback// * Type:HitTestResultCallback * Description:N/A * //hitTestParameters// * Type:PointHitTestParameters * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InternalGetVisualChild(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Visual * Description:N/A == Parameters == * //index// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InternalGet2DOr3DVisualChild(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObject * Description:N/A == Parameters == * //index// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InternalAddVisualChild(Visual) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:Visual * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InternalRemoveVisualChild(Visual) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:Visual * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AddVisualChild(Visual) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AddVisualChild.28Visual.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:Visual * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RemoveVisualChild(Visual) ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#RemoveVisualChild.28Visual.29// == Return Value == * Type:Void * Description:N/A == Parameters == * //child// * Type:Visual * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InvalidateZOrder() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} InternalSetOffsetWorkaround(Vector) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //offset// * Type:Vector * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InternalSetTransformWorkaround(Transform) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //transform// * Type:Transform * Description:N/A
** {{wiki:ProtectedMethod.gif|}} BitmapEffectEmulationChanged(Object,EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //e// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ChangeVisualClip(Geometry,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //newClip// * Type:Geometry * Description:N/A * //dontSetWhenClose// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DisconnectAttachedResource(VisualProxyFlags,IResource) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //correspondingFlag// * Type:VisualProxyFlags * Description:N/A * //attachedResource// * Type:IResource * Description:N/A
** {{wiki:ProtectedMethod.gif|}} FireOnVisualParentChanged(DependencyObject) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //oldParent// * Type:DependencyObject * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetFlagsToRoot(Boolean,VisualFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //value// * Type:Boolean * Description:N/A * //flag// * Type:VisualFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} FindFirstAncestorWithFlagsAnd(VisualFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObject * Description:N/A == Parameters == * //flag// * Type:VisualFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} TrySimpleTransformToAncestor(Visual,Boolean,GeneralTransform&,Matrix&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //ancestor// * Type:Visual * Description:N/A * //inverse// * Type:Boolean * Description:N/A * //generalTransform// * Type:GeneralTransform& * Description:N/A * //simpleTransform// * Type:Matrix& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} TrySimpleTransformToAncestor(Visual3D,GeneralTransform2DTo3D&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //ancestor// * Type:Visual3D * Description:N/A * //transformTo3D// * Type:GeneralTransform2DTo3D& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ClipChanged(Object,EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //e// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ScrollableAreaClipChanged(Object,EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //e// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} TransformChanged(Object,EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //e// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} EffectChanged(Object,EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //e// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CacheModeChanged(Object,EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //e// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GuidelinesChanged(Object,EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //e// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OpacityMaskChanged(Object,EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //e// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ContentsChanged(Object,EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //sender// * Type:Object * Description:N/A * //e// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetFlagsOnAllChannels(Boolean,VisualProxyFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //value// * Type:Boolean * Description:N/A * //flagsToChange// * Type:VisualProxyFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetFlags(Channel,Boolean,VisualProxyFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //channel// * Type:Channel * Description:N/A * //value// * Type:Boolean * Description:N/A * //flagsToChange// * Type:VisualProxyFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetFlags(Boolean,VisualFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //value// * Type:Boolean * Description:N/A * //flags// * Type:VisualFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CheckFlagsOnAllChannels(VisualProxyFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //flagsToCheck// * Type:VisualProxyFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CheckFlagsAnd(Channel,VisualProxyFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //channel// * Type:Channel * Description:N/A * //flagsToCheck// * Type:VisualProxyFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CheckFlagsAnd(VisualFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //flags// * Type:VisualFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CheckFlagsOr(Channel,VisualProxyFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //channel// * Type:Channel * Description:N/A * //flagsToCheck// * Type:VisualProxyFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CheckFlagsOr(VisualFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //flags// * Type:VisualFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} PropagateChangedFlags() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} Seal() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetValueEntry(EntryIndex,DependencyProperty,PropertyMetadata,RequestFlags) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EffectiveValueEntry * Description:N/A == Parameters == * //entryIndex// * Type:EntryIndex * Description:N/A * //dp// * Type:DependencyProperty * Description:N/A * //metadata// * Type:PropertyMetadata * Description:N/A * //requests// * Type:RequestFlags * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyProperty,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //value// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetCurrentValue(DependencyProperty,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //value// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetValueInternal(DependencyProperty,Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //value// * Type:Object * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetCurrentValueInternal(DependencyProperty,Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //value// * Type:Object * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetDeferredValue(DependencyProperty,DeferredReference) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //deferredReference// * Type:DeferredReference * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetCurrentDeferredValue(DependencyProperty,DeferredReference) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //deferredReference// * Type:DeferredReference * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetMutableDefaultValue(DependencyProperty,Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //value// * Type:Object * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyPropertyKey,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyPropertyKey * Description:N/A * //value// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ProvideSelfAsInheritanceContext(Object,DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //value// * Type:Object * Description:N/A * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ProvideSelfAsInheritanceContext(DependencyObject,DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //doValue// * Type:DependencyObject * Description:N/A * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RemoveSelfAsInheritanceContext(Object,DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //value// * Type:Object * Description:N/A * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} RemoveSelfAsInheritanceContext(DependencyObject,DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //doValue// * Type:DependencyObject * Description:N/A * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ContainsValue(DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InvalidateSubProperty(DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} NotifySubPropertyChange(DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} InvalidateProperty(DependencyProperty,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //preserveCurrentValue// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} UpdateEffectiveValue(EntryIndex,DependencyProperty,PropertyMetadata,EffectiveValueEntry,EffectiveValueEntry&,Boolean,Boolean,OperationType) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:UpdateResult * Description:N/A == Parameters == * //entryIndex// * Type:EntryIndex * Description:N/A * //dp// * Type:DependencyProperty * Description:N/A * //metadata// * Type:PropertyMetadata * Description:N/A * //oldEntry// * Type:EffectiveValueEntry * Description:N/A * //newEntry// * Type:EffectiveValueEntry& * Description:N/A * //coerceWithDeferredReference// * Type:Boolean * Description:N/A * //coerceWithCurrentValue// * Type:Boolean * Description:N/A * //operationType// * Type:OperationType * Description:N/A
** {{wiki:ProtectedMethod.gif|}} NotifyPropertyChange(DependencyPropertyChangedEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:DependencyPropertyChangedEventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ShouldSerializeProperty(DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetValueSource(DependencyProperty,PropertyMetadata,Boolean&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:BaseValueSourceInternal * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //metadata// * Type:PropertyMetadata * Description:N/A * //hasModifiers// * Type:Boolean& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetValueSource(DependencyProperty,PropertyMetadata,Boolean&,Boolean&,Boolean&,Boolean&,Boolean&) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:BaseValueSourceInternal * Description:N/A == Parameters == * //dp// * Type:DependencyProperty * Description:N/A * //metadata// * Type:PropertyMetadata * Description:N/A * //hasModifiers// * Type:Boolean& * Description:N/A * //isExpression// * Type:Boolean& * Description:N/A * //isAnimated// * Type:Boolean& * Description:N/A * //isCoerced// * Type:Boolean& * Description:N/A * //isCurrent// * Type:Boolean& * Description:N/A
** {{wiki:ProtectedMethod.gif|}} ReadLocalValueEntry(EntryIndex,DependencyProperty,Boolean) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters == * //entryIndex// * Type:EntryIndex * Description:N/A * //dp// * Type:DependencyProperty * Description:N/A * //allowDeferredReferences// * Type:Boolean * Description:N/A
** {{wiki:ProtectedMethod.gif|}} HasAnyExpression() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} HasExpression(EntryIndex,DependencyProperty) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //entryIndex// * Type:EntryIndex * Description:N/A * //dp// * Type:DependencyProperty * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnInheritanceContextChanged(EventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //args// * Type:EventArgs * Description:N/A
** {{wiki:ProtectedMethod.gif|}} Debug_AssertNoInheritanceContextListeners() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} BeginPropertyInitialization() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} EndPropertyInitialization() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} SetIsSelfInheritanceParent() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} SynchronizeInheritanceParent(DependencyObject) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //parent// * Type:DependencyObject * Description:N/A
** {{wiki:ProtectedMethod.gif|}} LookupEntry(Int32) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EntryIndex * Description:N/A == Parameters == * //targetIndex// * Type:Int32 * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetEffectiveValue(EntryIndex,DependencyProperty,PropertyMetadata,EffectiveValueEntry,EffectiveValueEntry) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //entryIndex// * Type:EntryIndex * Description:N/A * //dp// * Type:DependencyProperty * Description:N/A * //metadata// * Type:PropertyMetadata * Description:N/A * //newEntry// * Type:EffectiveValueEntry * Description:N/A * //oldEntry// * Type:EffectiveValueEntry * Description:N/A
** {{wiki:ProtectedMethod.gif|}} SetEffectiveValue(EntryIndex,DependencyProperty,Int32,PropertyMetadata,Object,BaseValueSourceInternal) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //entryIndex// * Type:EntryIndex * Description:N/A * //dp// * Type:DependencyProperty * Description:N/A * //targetIndex// * Type:Int32 * Description:N/A * //metadata// * Type:PropertyMetadata * Description:N/A * //value// * Type:Object * Description:N/A * //valueSource// * Type:BaseValueSourceInternal * Description:N/A
** {{wiki:ProtectedMethod.gif|}} UnsetEffectiveValue(EntryIndex,DependencyProperty,PropertyMetadata) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //entryIndex// * Type:EntryIndex * Description:N/A * //dp// * Type:DependencyProperty * Description:N/A * //metadata// * Type:PropertyMetadata * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DetachFromDispatcher() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#MemberwiseClone.28.29// == Return Value == * Type:Object * Description:N/A == Parameters ==
==== Public Properties ==== ** {{wiki:PublicProperty.gif|}} BackgroundOverlay ** * //This property gets or sets the background overlay.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#BackgroundOverlay// == Return Value == * Type:[[ThinkGeo.MapSuite.DesktopEdition.BackgroundOverlay|BackgroundOverlay]] ** {{wiki:PublicProperty.gif|}} AdornmentOverlay ** * //This property gets or sets the adornment overlay in the MapControl.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AdornmentOverlay// == Return Value == * Type:[[ThinkGeo.MapSuite.DesktopEdition.AdornmentOverlay|AdornmentOverlay]] ** {{wiki:PublicProperty.gif|}} EditOverlay ** * //This property gets or sets the edit overlay in the MapControl.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#EditOverlay// == Return Value == * Type:[[ThinkGeo.MapSuite.DesktopEdition.EditInteractiveOverlay|EditInteractiveOverlay]] ** {{wiki:PublicProperty.gif|}} TrackOverlay ** * //This property gets or sets the track overlay in the MapControl.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#TrackOverlay// == Return Value == * Type:[[ThinkGeo.MapSuite.DesktopEdition.TrackInteractiveOverlay|TrackInteractiveOverlay]] ** {{wiki:PublicProperty.gif|}} ExtentOverlay ** * //This property gets or sets the extent overlay in the MapControl.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ExtentOverlay// == Return Value == * Type:[[ThinkGeo.MapSuite.DesktopEdition.ExtentInteractiveOverlay|ExtentInteractiveOverlay]] ** {{wiki:PublicProperty.gif|}} InteractiveOverlays ** * //This property gets the collection of InteractiveOverlays in the MapControl.// == Remarks == * //This property is used when you want to change the default behavior of the InteractiveOverlay or add your own customized InteractiveOverlay.// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeoCollection[[ThinkGeo.MapSuite.DesktopEdition.InteractiveOverlay, DesktopEdition, Version=9.0.0.0, Culture=neutral, PublicKeyToken=null]]|GeoCollection]] ** {{wiki:PublicProperty.gif|}} Overlays ** * //This property gets the collection of Overlays in the MapControl.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnOverlaysDrawing.28OverlaysDrawingWpfMapEventArgs.29// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeoCollection[[ThinkGeo.MapSuite.DesktopEdition.Overlay, DesktopEdition, Version=9.0.0.0, Culture=neutral, PublicKeyToken=null]]|GeoCollection]] ** {{wiki:PublicProperty.gif|}} MapUnit ** * //This property gets or sets the map unit used by the MapControl.// == Remarks == * //The MapUnit reflects the data unit.// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeographyUnit|GeographyUnit]] ** {{wiki:PublicProperty.gif|}} MapFocusMode ** * //This property gets or sets the MapFocusMode for the MapControl when dealing with the issue of the map taking focus.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#MapFocusMode// == Return Value == * Type:[[ThinkGeo.MapSuite.DesktopEdition.MapFocusMode|MapFocusMode]] ** {{wiki:PublicProperty.gif|}} ZoomLevelSnapping ** * //This property gets or sets the ZoomLevelSnappingMode in the MapControl.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomLevelSnapping// == Return Value == * Type:[[ThinkGeo.MapSuite.DesktopEdition.ZoomLevelSnappingMode|ZoomLevelSnappingMode]] ** {{wiki:PublicProperty.gif|}} CurrentScale ** * //Gets or sets the current scale of the MapControl.// == Remarks == * //When you set the scale, the CurrentExtent will change, but the center of the CurrentExtent stays the same.// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} CurrentExtent ** * //Gets or sets the current extent of the MapControl.// == Remarks == * //The current extent stands for the extent of current position, this is very important metrics to caculate the scale.// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.RectangleShape|RectangleShape]] ** {{wiki:PublicProperty.gif|}} ZoomLevelSet ** * //This property gets or sets the ZoomLevelSet used for the MapControl.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ZoomLevelSet// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.ZoomLevelSet|ZoomLevelSet]] ** {{wiki:PublicProperty.gif|}} MapResizeMode ** * //This property gets or sets the MapResizeMode to be used when resizing the MapControl.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#MapResizeMode// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.MapResizeMode|MapResizeMode]] ** {{wiki:PublicProperty.gif|}} MinimumScale ** * //This property gets or sets the MinimumScale your MapControl can zoom into when your ZoomLevelSnappingMode is set to None.// == Remarks == * //If your ZoomLevelSnappingMode is set to either Default or SnapUp, the minimum scale you can zoom into will always be the minimum level from the 20 preset scales. If the MinimumScale value you set here is larger than the smallest scale available in the preset scales, the next preset that is larger than your MinimumScale will be chosen.// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} MaximumScale ** * //This property will gets or sets the MaximumScale your MapControl can zoom out to when your ZoomLevelSnappingMode is set to None.// == Remarks == * //If your ZoomLevelSnappingMode is set to Default or SnapUp, the maximum scale you can zoom out to will always be the maximum level from the 20 preset scales. If the MaximumScale value you set here is larger than the largest scale available in the preset scales, the next preset that is smaller than your MaximumScale will be chosen.// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} ThreadingMode ** * //This property gets or sets the ThreadingMode used in the MapControl.// == Remarks == * //Currently, we provide two different ThreadingModes: single-threaded mode and multi-threaded mode. The major difference for multi-threaded mode is that the drawing logic for overlays is done in another thread instead of the main thread.// == Return Value == * Type:[[ThinkGeo.MapSuite.DesktopEdition.MapThreadingMode|MapThreadingMode]] ** {{wiki:PublicProperty.gif|}} Background ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Background// == Return Value == * Type:Brush ** {{wiki:PublicProperty.gif|}} Children ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeChildren.28.29// == Return Value == * Type:UIElementCollection ** {{wiki:PublicProperty.gif|}} IsItemsHost ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsItemsHostChanged.28Boolean.2C_Boolean.29// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} LogicalOrientationPublic ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#HasLogicalOrientationPublic// == Return Value == * Type:Orientation ** {{wiki:PublicProperty.gif|}} HasLogicalOrientationPublic ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#HasLogicalOrientationPublic// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Style ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeStyle.28.29// == Return Value == * Type:Style ** {{wiki:PublicProperty.gif|}} OverridesDefaultStyle ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OverridesDefaultStyle// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} UseLayoutRounding ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#UseLayoutRounding// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Triggers ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeTriggers.28.29// == Return Value == * Type:TriggerCollection ** {{wiki:PublicProperty.gif|}} TemplatedParent ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#TemplatedParent// == Return Value == * Type:DependencyObject ** {{wiki:PublicProperty.gif|}} Resources ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeResources.28.29// == Return Value == * Type:ResourceDictionary ** {{wiki:PublicProperty.gif|}} DataContext ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#DataContext// == Return Value == * Type:Object ** {{wiki:PublicProperty.gif|}} BindingGroup ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#BindingGroup// == Return Value == * Type:BindingGroup ** {{wiki:PublicProperty.gif|}} Language ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Language// == Return Value == * Type:XmlLanguage ** {{wiki:PublicProperty.gif|}} Name ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#FindName.28String.29// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} Tag ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Tag// == Return Value == * Type:Object ** {{wiki:PublicProperty.gif|}} InputScope ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#InputScope// == Return Value == * Type:InputScope ** {{wiki:PublicProperty.gif|}} ActualWidth ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ActualWidth// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} ActualHeight ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ActualHeight// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} LayoutTransform ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#LayoutTransform// == Return Value == * Type:Transform ** {{wiki:PublicProperty.gif|}} Width ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ActualWidth// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} MinWidth ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#MinWidth// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} MaxWidth ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#MaxWidth// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} Height ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ActualHeight// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} MinHeight ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#MinHeight// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} MaxHeight ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#MaxHeight// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} FlowDirection ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#FlowDirection// == Return Value == * Type:FlowDirection ** {{wiki:PublicProperty.gif|}} Margin ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Margin// == Return Value == * Type:Thickness ** {{wiki:PublicProperty.gif|}} HorizontalAlignment ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#HorizontalAlignment// == Return Value == * Type:HorizontalAlignment ** {{wiki:PublicProperty.gif|}} VerticalAlignment ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#VerticalAlignment// == Return Value == * Type:VerticalAlignment ** {{wiki:PublicProperty.gif|}} FocusVisualStyle ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#FocusVisualStyle// == Return Value == * Type:Style ** {{wiki:PublicProperty.gif|}} Cursor ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnQueryCursor.28QueryCursorEventArgs.29// == Return Value == * Type:Cursor ** {{wiki:PublicProperty.gif|}} ForceCursor ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ForceCursor// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsInitialized ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsInitialized// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsLoaded ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsLoaded// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} ToolTip ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnToolTipClosing.28ToolTipEventArgs.29// == Return Value == * Type:Object ** {{wiki:PublicProperty.gif|}} ContextMenu ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnContextMenuClosing.28ContextMenuEventArgs.29// == Return Value == * Type:ContextMenu ** {{wiki:PublicProperty.gif|}} Parent ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Parent// == Return Value == * Type:DependencyObject ** {{wiki:PublicProperty.gif|}} HasAnimatedProperties ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#HasAnimatedProperties// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} InputBindings ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeInputBindings.28.29// == Return Value == * Type:InputBindingCollection ** {{wiki:PublicProperty.gif|}} CommandBindings ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ShouldSerializeCommandBindings.28.29// == Return Value == * Type:CommandBindingCollection ** {{wiki:PublicProperty.gif|}} AllowDrop ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AllowDrop// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} DesiredSize ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnChildDesiredSizeChanged.28UIElement.29// == Return Value == * Type:Size ** {{wiki:PublicProperty.gif|}} IsMeasureValid ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsMeasureValid// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsArrangeValid ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsArrangeValid// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} RenderSize ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#RenderSize// == Return Value == * Type:Size ** {{wiki:PublicProperty.gif|}} RenderTransform ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#RenderTransform// == Return Value == * Type:Transform ** {{wiki:PublicProperty.gif|}} RenderTransformOrigin ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#RenderTransformOrigin// == Return Value == * Type:Point ** {{wiki:PublicProperty.gif|}} IsMouseDirectlyOver ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsMouseDirectlyOverChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsMouseOver ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsMouseOver// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsStylusOver ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsStylusOver// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsKeyboardFocusWithin ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsKeyboardFocusWithinChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsMouseCaptured ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsMouseCapturedChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsMouseCaptureWithin ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsMouseCaptureWithinChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsStylusDirectlyOver ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsStylusDirectlyOverChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsStylusCaptured ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsStylusCapturedChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsStylusCaptureWithin ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsStylusCaptureWithinChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsKeyboardFocused ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsKeyboardFocusedChanged.28DependencyPropertyChangedEventArgs.29// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsInputMethodEnabled ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsInputMethodEnabled// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Opacity ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Opacity// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} OpacityMask ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OpacityMask// == Return Value == * Type:Brush ** {{wiki:PublicProperty.gif|}} BitmapEffect ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:BitmapEffect ** {{wiki:PublicProperty.gif|}} Effect ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Effect// == Return Value == * Type:Effect ** {{wiki:PublicProperty.gif|}} BitmapEffectInput ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:BitmapEffectInput ** {{wiki:PublicProperty.gif|}} CacheMode ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#CacheMode// == Return Value == * Type:CacheMode ** {{wiki:PublicProperty.gif|}} Uid ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Uid// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} Visibility ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Visibility// == Return Value == * Type:Visibility ** {{wiki:PublicProperty.gif|}} ClipToBounds ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#ClipToBounds// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Clip ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#GetLayoutClip.28Size.29// == Return Value == * Type:Geometry ** {{wiki:PublicProperty.gif|}} SnapsToDevicePixels ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#SnapsToDevicePixels// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsFocused ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsFocused// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsEnabled ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsEnabled// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsHitTestVisible ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsHitTestVisible// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} IsVisible ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsVisible// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Focusable ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Focusable// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} PersistId ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} IsManipulationEnabled ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsManipulationEnabled// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} AreAnyTouchesOver ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AreAnyTouchesOver// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} AreAnyTouchesDirectlyOver ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AreAnyTouchesDirectlyOver// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} AreAnyTouchesCapturedWithin ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AreAnyTouchesCapturedWithin// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} AreAnyTouchesCaptured ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AreAnyTouchesCaptured// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} TouchesCaptured ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AreAnyTouchesCaptured// == Return Value == * Type:IEnumerable ** {{wiki:PublicProperty.gif|}} TouchesCapturedWithin ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AreAnyTouchesCapturedWithin// == Return Value == * Type:IEnumerable ** {{wiki:PublicProperty.gif|}} TouchesOver ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AreAnyTouchesOver// == Return Value == * Type:IEnumerable ** {{wiki:PublicProperty.gif|}} TouchesDirectlyOver ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#AreAnyTouchesDirectlyOver// == Return Value == * Type:IEnumerable ** {{wiki:PublicProperty.gif|}} DependencyObjectType ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#DependencyObjectType// == Return Value == * Type:DependencyObjectType ** {{wiki:PublicProperty.gif|}} IsSealed ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsSealed// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} Dispatcher ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Dispatcher// == Return Value == * Type:Dispatcher ==== Protected Properties ==== ** {{wiki:ProtectedProperty.gif|}} EffectiveValuesInitialSize ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} LogicalChildren ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IEnumerator ** {{wiki:ProtectedProperty.gif|}} LogicalOrientation ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Orientation ** {{wiki:ProtectedProperty.gif|}} HasLogicalOrientation ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} InternalChildren ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:UIElementCollection ** {{wiki:ProtectedProperty.gif|}} VisualChildrenCount ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#VisualChildrenCount// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} Generator ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:IItemContainerGenerator ** {{wiki:ProtectedProperty.gif|}} VSP_IsVirtualizing ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} VSP_HasMeasured ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} VSP_MustDisableVirtualization ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} VSP_IsPixelBased ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} VSP_InRecyclingMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} VSP_MeasureCaches ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsDataBound ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} DefaultStyleKey ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object ** {{wiki:ProtectedProperty.gif|}} ThemeStyle ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Style ** {{wiki:ProtectedProperty.gif|}} DTypeThemeStyleKey ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObjectType ** {{wiki:ProtectedProperty.gif|}} TemplateInternal ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:FrameworkTemplate ** {{wiki:ProtectedProperty.gif|}} TemplateCache ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:FrameworkTemplate ** {{wiki:ProtectedProperty.gif|}} IsTemplateRoot ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} TemplateChild ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:UIElement ** {{wiki:ProtectedProperty.gif|}} StateGroupsRoot ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:FrameworkElement ** {{wiki:ProtectedProperty.gif|}} HasResources ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} InheritanceBehavior ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:InheritanceBehavior ** {{wiki:ProtectedProperty.gif|}} HasResourceReference ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsLogicalChildrenIterationInProgress ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} InVisibilityCollapsedTree ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} SubtreeHasLoadedChangeHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsLoadedCache ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsParentAnFE ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsTemplatedParentAnFE ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} HasLogicalChildren ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsRightToLeft ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} TemplateChildIndex ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} IsRequestingExpression ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} BypassLayoutPolicies ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} ThisHasLoadedChangeEventHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} HasFefLoadedChangeHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} InheritanceContext ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObject ** {{wiki:ProtectedProperty.gif|}} IsStyleUpdateInProgress ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsThemeStyleUpdateInProgress ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} StoresParentTemplateValues ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} HasNumberSubstitutionChanged ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} HasTemplateGeneratedSubTree ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} HasImplicitStyleFromResources ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} ShouldLookupImplicitStyles ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsStyleSetFromGenerator ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} HasStyleChanged ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} HasTemplateChanged ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} HasStyleInvalidated ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} HasStyleEverBeenFetched ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} HasLocalStyle ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} HasThemeStyleEverBeenFetched ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} AncestorChangeInProgress ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} InheritableProperties ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:FrugalObjectList ** {{wiki:ProtectedProperty.gif|}} LoadedPending ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object[] ** {{wiki:ProtectedProperty.gif|}} UnloadedPending ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object[] ** {{wiki:ProtectedProperty.gif|}} HasMultipleInheritanceContexts ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} PotentiallyHasMentees ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} InputBindingsInternal ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:InputBindingCollection ** {{wiki:ProtectedProperty.gif|}} CommandBindingsInternal ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:CommandBindingCollection ** {{wiki:ProtectedProperty.gif|}} EventHandlersStore ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EventHandlersStore ** {{wiki:ProtectedProperty.gif|}} StylusPlugIns ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#StylusPlugIns// == Return Value == * Type:StylusPlugInCollection ** {{wiki:ProtectedProperty.gif|}} PreviousConstraint ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Size ** {{wiki:ProtectedProperty.gif|}} HasEffectiveKeyboardFocus ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsEnabledCore ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsEnabledCore// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} PreviousArrangeRect ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Rect ** {{wiki:ProtectedProperty.gif|}} HasAutomationPeer ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} SnapsToDevicePixelsCache ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} ClipToBoundsCache ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} MeasureDirty ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} ArrangeDirty ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} MeasureInProgress ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} ArrangeInProgress ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} NeverMeasured ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} NeverArranged ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} MeasureDuringArrange ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} AreTransformsClean ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsVisualChildrenIterationInProgress ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsRootElement ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} VisualContentBounds ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Rect ** {{wiki:ProtectedProperty.gif|}} VisualDescendantBounds ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Rect ** {{wiki:ProtectedProperty.gif|}} InternalVisualChildrenCount ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} InternalVisual2DOr3DChildrenCount ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} HasVisualChildren ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} TreeLevel ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:UInt32 ** {{wiki:ProtectedProperty.gif|}} VisualParent ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#VisualParent// == Return Value == * Type:DependencyObject ** {{wiki:ProtectedProperty.gif|}} InternalVisualParent ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObject ** {{wiki:ProtectedProperty.gif|}} VisualTransform ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Transform ** {{wiki:ProtectedProperty.gif|}} VisualEffect ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Effect ** {{wiki:ProtectedProperty.gif|}} VisualEffectInternal ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Effect ** {{wiki:ProtectedProperty.gif|}} VisualBitmapEffect ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:BitmapEffect ** {{wiki:ProtectedProperty.gif|}} VisualBitmapEffectInput ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:BitmapEffectInput ** {{wiki:ProtectedProperty.gif|}} BitmapEffectEmulationDisabled ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} VisualBitmapEffectInternal ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:BitmapEffect ** {{wiki:ProtectedProperty.gif|}} VisualBitmapEffectInputInternal ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:BitmapEffectInput ** {{wiki:ProtectedProperty.gif|}} VisualCacheMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:CacheMode ** {{wiki:ProtectedProperty.gif|}} VisualScrollableAreaClip ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Nullable ** {{wiki:ProtectedProperty.gif|}} VisualClip ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Geometry ** {{wiki:ProtectedProperty.gif|}} VisualOffset ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Vector ** {{wiki:ProtectedProperty.gif|}} VisualOpacity ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double ** {{wiki:ProtectedProperty.gif|}} VisualEdgeMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EdgeMode ** {{wiki:ProtectedProperty.gif|}} VisualBitmapScalingMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:BitmapScalingMode ** {{wiki:ProtectedProperty.gif|}} VisualClearTypeHint ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:ClearTypeHint ** {{wiki:ProtectedProperty.gif|}} VisualTextRenderingMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:TextRenderingMode ** {{wiki:ProtectedProperty.gif|}} VisualTextHintingMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:TextHintingMode ** {{wiki:ProtectedProperty.gif|}} VisualOpacityMask ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Brush ** {{wiki:ProtectedProperty.gif|}} VisualXSnappingGuidelines ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DoubleCollection ** {{wiki:ProtectedProperty.gif|}} VisualYSnappingGuidelines ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DoubleCollection ** {{wiki:ProtectedProperty.gif|}} ClipChangedHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EventHandler ** {{wiki:ProtectedProperty.gif|}} ScrollableAreaClipChangedHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EventHandler ** {{wiki:ProtectedProperty.gif|}} TransformChangedHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EventHandler ** {{wiki:ProtectedProperty.gif|}} EffectChangedHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EventHandler ** {{wiki:ProtectedProperty.gif|}} CacheModeChangedHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EventHandler ** {{wiki:ProtectedProperty.gif|}} GuidelinesChangedHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EventHandler ** {{wiki:ProtectedProperty.gif|}} OpacityMaskChangedHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EventHandler ** {{wiki:ProtectedProperty.gif|}} ContentsChangedHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EventHandler ** {{wiki:ProtectedProperty.gif|}} IsInheritanceContextSealed ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} Freezable_Frozen ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} Freezable_HasMultipleInheritanceContexts ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} Freezable_UsingHandlerList ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} Freezable_UsingContextList ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} Freezable_UsingSingletonHandler ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} Freezable_UsingSingletonContext ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} Animatable_IsResourceInvalidationNecessary ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IAnimatable_HasAnimatedProperties ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} CanBeInheritanceContext ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} EffectiveValues ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:EffectiveValueEntry[] ** {{wiki:ProtectedProperty.gif|}} EffectiveValuesCount ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:UInt32 ** {{wiki:ProtectedProperty.gif|}} InheritableEffectiveValuesCount ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:UInt32 ** {{wiki:ProtectedProperty.gif|}} InheritanceParent ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:DependencyObject ** {{wiki:ProtectedProperty.gif|}} IsSelfInheritanceParent ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ==== Public Events ==== ** {{wiki:PublicEvent.gif|}} MapClick ** * //This event will be fired when you click on the Map.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMapClick.28MapClickWpfMapEventArgs.29// Event Arguments:[[ThinkGeo.MapSuite.DesktopEdition.MapClickWpfMapEventArgs|MapClickWpfMapEventArgs]] ** {{wiki:PublicEvent.gif|}} OverlaysDrawing ** * //This event will be fired before all overlays are drawn.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnOverlaysDrawing.28OverlaysDrawingWpfMapEventArgs.29// Event Arguments:[[ThinkGeo.MapSuite.DesktopEdition.OverlaysDrawingWpfMapEventArgs|OverlaysDrawingWpfMapEventArgs]] ** {{wiki:PublicEvent.gif|}} OverlaysDrawn ** * //This event will be fired after all overlays are drawn.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnOverlaysDrawn.28OverlaysDrawnWpfMapEventArgs.29// Event Arguments:[[ThinkGeo.MapSuite.DesktopEdition.OverlaysDrawnWpfMapEventArgs|OverlaysDrawnWpfMapEventArgs]] ** {{wiki:PublicEvent.gif|}} OverlayDrawing ** * //This event will be fired before an overlay is drawn.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnOverlayDrawing.28OverlayDrawingWpfMapEventArgs.29// Event Arguments:[[ThinkGeo.MapSuite.DesktopEdition.OverlayDrawingWpfMapEventArgs|OverlayDrawingWpfMapEventArgs]] ** {{wiki:PublicEvent.gif|}} OverlayDrawn ** * //This event will be fired after an overlay is drawn.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnOverlayDrawn.28OverlayDrawnWpfMapEventArgs.29// Event Arguments:[[ThinkGeo.MapSuite.DesktopEdition.OverlayDrawnWpfMapEventArgs|OverlayDrawnWpfMapEventArgs]] ** {{wiki:PublicEvent.gif|}} CurrentExtentChanging ** * //This event will be raised before the CurrentExtent of the Map changes.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnCurrentExtentChanging.28CurrentExtentChangingWpfMapEventArgs.29// Event Arguments:[[ThinkGeo.MapSuite.DesktopEdition.CurrentExtentChangingWpfMapEventArgs|CurrentExtentChangingWpfMapEventArgs]] ** {{wiki:PublicEvent.gif|}} CurrentExtentChanged ** * //This event will be raised after the CurrentExtent of the Map changes.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnCurrentExtentChanged.28CurrentExtentChangedWpfMapEventArgs.29// Event Arguments:[[ThinkGeo.MapSuite.DesktopEdition.CurrentExtentChangedWpfMapEventArgs|CurrentExtentChangedWpfMapEventArgs]] ** {{wiki:PublicEvent.gif|}} CurrentScaleChanged ** * //This event will be raised after the CurrentScale of the Map changes.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnCurrentScaleChanged.28CurrentScaleChangedWpfMapEventArgs.29// Event Arguments:[[ThinkGeo.MapSuite.DesktopEdition.CurrentScaleChangedWpfMapEventArgs|CurrentScaleChangedWpfMapEventArgs]] ** {{wiki:PublicEvent.gif|}} CurrentScaleChanging ** * //This event will be raised before the CurrentScale of the Map changes.// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnCurrentScaleChanging.28CurrentScaleChangingWpfMapEventArgs.29// Event Arguments:[[ThinkGeo.MapSuite.DesktopEdition.CurrentScaleChangingWpfMapEventArgs|CurrentScaleChangingWpfMapEventArgs]] ** {{wiki:PublicEvent.gif|}} TargetUpdated ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#TargetUpdated// Event Arguments:DataTransferEventArgs ** {{wiki:PublicEvent.gif|}} SourceUpdated ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#SourceUpdated// Event Arguments:DataTransferEventArgs ** {{wiki:PublicEvent.gif|}} DataContextChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#DataContextChanged// Event Arguments: ** {{wiki:PublicEvent.gif|}} RequestBringIntoView ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#RequestBringIntoView// Event Arguments: ** {{wiki:PublicEvent.gif|}} SizeChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnChildDesiredSizeChanged.28UIElement.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} Initialized ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnInitialized.28EventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} Loaded ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsLoaded// Event Arguments: ** {{wiki:PublicEvent.gif|}} Unloaded ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#Unloaded// Event Arguments: ** {{wiki:PublicEvent.gif|}} ToolTipOpening ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnToolTipOpening.28ToolTipEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} ToolTipClosing ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnToolTipClosing.28ToolTipEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} ContextMenuOpening ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnContextMenuOpening.28ContextMenuEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} ContextMenuClosing ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnContextMenuClosing.28ContextMenuEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewMouseDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseDown.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} MouseDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseDown.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewMouseUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseUp.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} MouseUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseUp.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewMouseLeftButtonDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseLeftButtonDown.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} MouseLeftButtonDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseLeftButtonDown.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewMouseLeftButtonUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseLeftButtonUp.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} MouseLeftButtonUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseLeftButtonUp.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewMouseRightButtonDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseRightButtonDown.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} MouseRightButtonDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseRightButtonDown.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewMouseRightButtonUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseRightButtonUp.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} MouseRightButtonUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseRightButtonUp.28MouseButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewMouseMove ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseMove.28MouseEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} MouseMove ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseMove.28MouseEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewMouseWheel ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewMouseWheel.28MouseWheelEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} MouseWheel ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseWheel.28MouseWheelEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} MouseEnter ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseEnter.28MouseEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} MouseLeave ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnMouseLeave.28MouseEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} GotMouseCapture ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGotMouseCapture.28MouseEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} LostMouseCapture ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnLostMouseCapture.28MouseEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} QueryCursor ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnQueryCursor.28QueryCursorEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewStylusDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusDown.28StylusDownEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} StylusDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusDown.28StylusDownEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewStylusUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusUp.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} StylusUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusUp.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewStylusMove ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusMove.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} StylusMove ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusMove.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewStylusInAirMove ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusInAirMove.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} StylusInAirMove ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusInAirMove.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} StylusEnter ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusEnter.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} StylusLeave ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnStylusLeave.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewStylusInRange ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusInRange.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} StylusInRange ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusInRange.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewStylusOutOfRange ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusOutOfRange.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} StylusOutOfRange ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusOutOfRange.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewStylusSystemGesture ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusSystemGesture.28StylusSystemGestureEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} StylusSystemGesture ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusSystemGesture.28StylusSystemGestureEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} GotStylusCapture ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGotStylusCapture.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} LostStylusCapture ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnLostStylusCapture.28StylusEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} StylusButtonDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusButtonDown.28StylusButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} StylusButtonUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusButtonUp.28StylusButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewStylusButtonDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusButtonDown.28StylusButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewStylusButtonUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewStylusButtonUp.28StylusButtonEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewKeyDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewKeyDown.28KeyEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} KeyDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnKeyDown.28KeyEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewKeyUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewKeyUp.28KeyEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} KeyUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnKeyUp.28KeyEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewGotKeyboardFocus ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewGotKeyboardFocus.28KeyboardFocusChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} GotKeyboardFocus ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGotKeyboardFocus.28KeyboardFocusChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewLostKeyboardFocus ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewLostKeyboardFocus.28KeyboardFocusChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} LostKeyboardFocus ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnLostKeyboardFocus.28KeyboardFocusChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewTextInput ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTextInput.28TextCompositionEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} TextInput ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTextInput.28TextCompositionEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewQueryContinueDrag ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewQueryContinueDrag.28QueryContinueDragEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} QueryContinueDrag ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewQueryContinueDrag.28QueryContinueDragEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewGiveFeedback ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewGiveFeedback.28GiveFeedbackEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} GiveFeedback ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGiveFeedback.28GiveFeedbackEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewDragEnter ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewDragEnter.28DragEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} DragEnter ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnDragEnter.28DragEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewDragOver ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewDragOver.28DragEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} DragOver ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnDragOver.28DragEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewDragLeave ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewDragLeave.28DragEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} DragLeave ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnDragLeave.28DragEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewDrop ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewDrop.28DragEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} Drop ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnDrop.28DragEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} PreviewTouchDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTouchDown.28TouchEventArgs.29// Event Arguments:TouchEventArgs ** {{wiki:PublicEvent.gif|}} TouchDown ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTouchDown.28TouchEventArgs.29// Event Arguments:TouchEventArgs ** {{wiki:PublicEvent.gif|}} PreviewTouchMove ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTouchMove.28TouchEventArgs.29// Event Arguments:TouchEventArgs ** {{wiki:PublicEvent.gif|}} TouchMove ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTouchMove.28TouchEventArgs.29// Event Arguments:TouchEventArgs ** {{wiki:PublicEvent.gif|}} PreviewTouchUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTouchUp.28TouchEventArgs.29// Event Arguments:TouchEventArgs ** {{wiki:PublicEvent.gif|}} TouchUp ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnPreviewTouchUp.28TouchEventArgs.29// Event Arguments:TouchEventArgs ** {{wiki:PublicEvent.gif|}} GotTouchCapture ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGotTouchCapture.28TouchEventArgs.29// Event Arguments:TouchEventArgs ** {{wiki:PublicEvent.gif|}} LostTouchCapture ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnLostTouchCapture.28TouchEventArgs.29// Event Arguments:TouchEventArgs ** {{wiki:PublicEvent.gif|}} TouchEnter ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnTouchEnter.28TouchEventArgs.29// Event Arguments:TouchEventArgs ** {{wiki:PublicEvent.gif|}} TouchLeave ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnTouchLeave.28TouchEventArgs.29// Event Arguments:TouchEventArgs ** {{wiki:PublicEvent.gif|}} IsMouseDirectlyOverChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsMouseDirectlyOverChanged.28DependencyPropertyChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} IsKeyboardFocusWithinChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsKeyboardFocusWithinChanged.28DependencyPropertyChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} IsMouseCapturedChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsMouseCapturedChanged.28DependencyPropertyChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} IsMouseCaptureWithinChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsMouseCaptureWithinChanged.28DependencyPropertyChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} IsStylusDirectlyOverChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsStylusDirectlyOverChanged.28DependencyPropertyChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} IsStylusCapturedChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsStylusCapturedChanged.28DependencyPropertyChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} IsStylusCaptureWithinChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsStylusCaptureWithinChanged.28DependencyPropertyChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} IsKeyboardFocusedChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnIsKeyboardFocusedChanged.28DependencyPropertyChangedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} LayoutUpdated ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#LayoutUpdated// Event Arguments: ** {{wiki:PublicEvent.gif|}} GotFocus ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnGotFocus.28RoutedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} LostFocus ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnLostFocus.28RoutedEventArgs.29// Event Arguments: ** {{wiki:PublicEvent.gif|}} IsEnabledChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsEnabledChanged// Event Arguments: ** {{wiki:PublicEvent.gif|}} IsHitTestVisibleChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsHitTestVisibleChanged// Event Arguments: ** {{wiki:PublicEvent.gif|}} IsVisibleChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#IsVisibleChanged// Event Arguments: ** {{wiki:PublicEvent.gif|}} FocusableChanged ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#FocusableChanged// Event Arguments: ** {{wiki:PublicEvent.gif|}} ManipulationStarting ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationStarting.28ManipulationStartingEventArgs.29// Event Arguments:ManipulationStartingEventArgs ** {{wiki:PublicEvent.gif|}} ManipulationStarted ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationStarted.28ManipulationStartedEventArgs.29// Event Arguments:ManipulationStartedEventArgs ** {{wiki:PublicEvent.gif|}} ManipulationDelta ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationDelta.28ManipulationDeltaEventArgs.29// Event Arguments:ManipulationDeltaEventArgs ** {{wiki:PublicEvent.gif|}} ManipulationInertiaStarting ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationInertiaStarting.28ManipulationInertiaStartingEventArgs.29// Event Arguments:ManipulationInertiaStartingEventArgs ** {{wiki:PublicEvent.gif|}} ManipulationBoundaryFeedback ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationBoundaryFeedback.28ManipulationBoundaryFeedbackEventArgs.29// Event Arguments:ManipulationBoundaryFeedbackEventArgs ** {{wiki:PublicEvent.gif|}} ManipulationCompleted ** * //N/A// == Remarks == * //For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WpfMap#OnManipulationCompleted.28ManipulationCompletedEventArgs.29// Event Arguments:ManipulationCompletedEventArgs