This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
|
thinkgeo.mapsuite.silverlightedition.map [2015/09/22 08:38] admin |
— (current) | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== ThinkGeo.MapSuite.SilverlightEdition.Map ====== | ||
| - | This class represents the main Silverlight map control. | ||
| - | ===== Inheritance Hierarchy ===== | ||
| - | *System.Object | ||
| - | *System.Windows.DependencyObject | ||
| - | *System.Windows.UIElement | ||
| - | *System.Windows.FrameworkElement | ||
| - | *System.Windows.Controls.Panel | ||
| - | *System.Windows.Controls.Canvas | ||
| - | ***ThinkGeo.MapSuite.SilverlightEdition.Map** | ||
| - | ===== Members Summary ===== | ||
| - | ==== Public Constructors ==== | ||
| - | ** {{wiki:PublicMethod.gif|}} Map() ** | ||
| - | |||
| - | * //This is the constructor of Map class.// | ||
| - | == Remarks == | ||
| - | * //The map class inherits from the Canvas control, so it can be defined onto the page or be created and added to a page via code like the Canvas control itself. You also need to configure the properties of the map. The most important step is adding overlays, which generate images, shapes, and stack them over each other to form a map. The map control has many methods and events through which you can interact with it.// | ||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ==== Protected Constructors ==== | ||
| - | ==== Public Methods ==== | ||
| - | ** {{wiki:PublicMethod.gif|}} Refresh() ** | ||
| - | |||
| - | * //This method refreshes all the overlays and map tools configed on the map.// | ||
| - | == Remarks == | ||
| - | * //This method refreshes all the overlays and map tools configed on the map. Please call it when your change related properties such as overlays and styles.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:None | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ZoomIn() ** | ||
| - | |||
| - | * //This method zooms the map in to the next scale of the ClientZoomLevelScales collection.// | ||
| - | == Remarks == | ||
| - | * //This method zooms the map in to the next scale of the ClientZoomLevelScales collection.If the new scale is the last scale in the collection, it keeps current level and does not change.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ZoomOut() ** | ||
| - | |||
| - | * //This method zooms the map out to the previous scale in the ClientZoomLevelScales collection.// | ||
| - | == Remarks == | ||
| - | * //This method zooms the map out to the previous scale in the ClientZoomLevelScales collection.If the new scale is the first scale in the collection, it keeps current level and does not change.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ZoomToScale(Double) ** | ||
| - | |||
| - | * //This method zooms the map to a specific scale.// | ||
| - | == Remarks == | ||
| - | * //This method will not affect the center of the map. It zooms the map to the zoomlevel whose scale is larger and nearest to the scale specified. For example, if you specify a scale that is between two zoomlevels, the map will snap to the nearest upper zoomlevel. So the map's final scale might not be equal to the specified scale after you call this method.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //targetScale// | ||
| - | * Type:Double | ||
| - | * Description:The new scale the map will zoom to. If the specific target scale is now in the ClientZoomLevelScales, it automatically snaps to the closest level. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ZoomTo(PointShape,Int32) ** | ||
| - | |||
| - | * //This method zooms the map to the center point and the client zoomlevel number that you specify.// | ||
| - | == Remarks == | ||
| - | * //The map will be panned to the new center and zoomed to the zoomlevel number compare to the ClientZoomScales that you specify.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //targetCenter// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | * Description:The target world center pointShape of the map. | ||
| - | |||
| - | * //zoomLevelId// | ||
| - | * Type:Int32 | ||
| - | * Description:The target zoomlevel index that the map will zoom to. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ZoomTo(Point,Int32) ** | ||
| - | |||
| - | * //This method zooms the map to the center point and the client zoomlevel number that you specify.// | ||
| - | == Remarks == | ||
| - | * //The map will be panned to the new center and zoomed to the zoomlevel number compare to the ClientZoomScales that you specify.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //targetCenter// | ||
| - | * Type:Point | ||
| - | * Description:The target world center point of the map. | ||
| - | |||
| - | * //zoomLevelId// | ||
| - | * Type:Int32 | ||
| - | * Description:The target zoomlevel index that the map will zoom to. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ZoomTo(RectangleShape) ** | ||
| - | |||
| - | * //This method zooms the map to the extent that you specify.// | ||
| - | == Remarks == | ||
| - | * //The map will be panned to the center and zoomlevel of the extent that you specify.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //targetWorldExtent// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]] | ||
| - | * Description:The new world extent of the map. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} MoveTo(PointShape) ** | ||
| - | |||
| - | * //This method moves the map to the center PointShape that you specify.// | ||
| - | == Remarks == | ||
| - | * //This method moves the map to the center PointShape that you specify. It keeps current scale.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //targetCenter// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | * Description:The target world center PointShape of the map. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} MoveTo(Point) ** | ||
| - | |||
| - | * //This method moves the map to the center that you specify.// | ||
| - | == Remarks == | ||
| - | * //This method moves the map to the center that you specify. It keeps current scale.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //targetCenter// | ||
| - | * Type:Point | ||
| - | * Description:The target world center Point of the map. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} Pan(Single,Int32) ** | ||
| - | |||
| - | * //This method moves the map by the specified angle and the percentage of the current extent.// | ||
| - | == Remarks == | ||
| - | * //This method moves the map by the angle and the percentage that you specify.The angle starts from the east and increases counterclockwise. For example, angle 0 represents precisely east and angle 90 represents precisely north.The percentage specifies the offset related to the current extent. If the percentage is 20, the panning offset in the X direction is CurrentExtent.Width* 0.2 and the offset in the Y direction is CurrentExtent.Height*0.2.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //degree// | ||
| - | * Type:Single | ||
| - | * Description:The angle value that determines the panning direction. | ||
| - | |||
| - | * //percentage// | ||
| - | * Type:Int32 | ||
| - | * Description:The percentage of the current extent. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} Pan(PanDirection,Int32) ** | ||
| - | |||
| - | * //This method moves the map by the specified angle and the percentage of the current extent.// | ||
| - | == Remarks == | ||
| - | * //This method moves the map by the angle and the percentage that you specify.The angle starts from the east and increases counterclockwise. For example, angle 0 represents precisely east and angle 90 represents precisely north.The percentage specifies the offset related to the current extent. If the percentage is 20, the panning offset in the X direction is CurrentExtent.Width* 0.2 and the offset in the Y direction is CurrentExtent.Height*0.2.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //panDirection// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PanDirection|PanDirection]] | ||
| - | * Description:The panning direction. | ||
| - | |||
| - | * //percentage// | ||
| - | * Type:Int32 | ||
| - | * Description:The percentage of the current extent. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} Pan(Double,Double) ** | ||
| - | |||
| - | * //This method move the map by the offset of the current extent.// | ||
| - | == Remarks == | ||
| - | * //This method move the map by the offset of the current extent.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //offsetScreenX// | ||
| - | * Type:Double | ||
| - | * Description:The x offset in screen coordinate that determines the panning. | ||
| - | |||
| - | * //offsetScreenY// | ||
| - | * Type:Double | ||
| - | * Description:The y offset in screen coordinate that determines the panning. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} GetScaleFromZoomLevelId(Int32) ** | ||
| - | |||
| - | * //This method gets scale from the zoomLevel index.// | ||
| - | == Remarks == | ||
| - | * //This method gets scale from the zoomLevel index.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | * Description:Returns the scale of the zoomLevelId that you defined in the ClientZoomLevelScales. | ||
| - | |||
| - | == Parameters == | ||
| - | * //zoomLevelId// | ||
| - | * Type:Int32 | ||
| - | * Description:ZoomLevel index in the ClientZoomLevelScales collection. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} GetResolutionFromZoomLevelId(Int32) ** | ||
| - | |||
| - | * //This method gets resolution from the zoomLevel index from the ClientZoomLevelScales.// | ||
| - | == Remarks == | ||
| - | * //This method gets resolution from the zoomLevel index from the ClientZoomLevelScales.Resolution = world coordinate length per screen pixel.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | * Description:The resolution of the zoomLevelId that you defined in the ClientZoomLevelScales. | ||
| - | |||
| - | == Parameters == | ||
| - | * //zoomLevelId// | ||
| - | * Type:Int32 | ||
| - | * Description:The zoom level index in the ClientZoomLevelScales collection. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} GetClosestZoomLevelIdFromScale(Double) ** | ||
| - | |||
| - | * //This method gets closest zoomLevel index from the scale.// | ||
| - | == Remarks == | ||
| - | * //This method gets closest zoomLevel index from the scale.It returns the map zoomlevel index whose scale is nearest to the ClientZoomLevelScales specified.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Int32 | ||
| - | * Description:The closest zoomLevel index that you defined in the ClientZoomLevelScales. | ||
| - | |||
| - | == Parameters == | ||
| - | * //scale// | ||
| - | * Type:Double | ||
| - | * Description:A double value of scale to get the closest zoomLevel index. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} GetClosestZoomLevelIdFromResolution(Double) ** | ||
| - | |||
| - | * //This method gets closest zoomLevel index from the resolution.// | ||
| - | == Remarks == | ||
| - | * //It returns the map zoomlevel whose resolution is nearest to the ClientZoomLevelScales specified.Resolution = world coordinate length per screen pixel.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Int32 | ||
| - | * Description:The closest zoomLevel index that you defined in the ClientZoomLevelScales. | ||
| - | |||
| - | == Parameters == | ||
| - | * //resolution// | ||
| - | * Type:Double | ||
| - | * Description:A double value of resolution to get the closest zoomLevel index. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ToWorldCoordinate(Double,Double) ** | ||
| - | |||
| - | * //This method converts a specified X, Y screen coordinates to a point shape in world coordinates.// | ||
| - | == Remarks == | ||
| - | * //This method converts X, Y screen coordinates to a point shape in world coodinates.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | * Description:A point shape in world coordinates. | ||
| - | |||
| - | == Parameters == | ||
| - | * //screenX// | ||
| - | * Type:Double | ||
| - | * Description:The X-value in pixels referenced to the screen origin. | ||
| - | |||
| - | * //screenY// | ||
| - | * Type:Double | ||
| - | * Description:The Y-value in pixels referenced to the screen origin. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ToWorldCoordinate(PointShape) ** | ||
| - | |||
| - | * //This method converts a PointShape in screen coordinates to a point shape in world coordinates.// | ||
| - | == Remarks == | ||
| - | * //This method converts a screen point to a point in world coordinates.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | * Description:A point shape in world coordinates. | ||
| - | |||
| - | == Parameters == | ||
| - | * //screenCoordinate// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | * Description:The point (in screen coordinates) to convert to world coordinates. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ToWorldCoordinate(Point) ** | ||
| - | |||
| - | * //This method converts a point shape in world coordinates from a ScreenPointF structure.// | ||
| - | == Remarks == | ||
| - | * //This method converts a screen point to a point in world coordinates.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | * Description:A point shape in world coordinates. | ||
| - | |||
| - | == Parameters == | ||
| - | * //screenCoordinate// | ||
| - | * Type:Point | ||
| - | * Description:The point (in screen coordinates) to convert to world coordinates. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ToScreenCoordinate(Double,Double) ** | ||
| - | |||
| - | * //This method converts a specified X, Y world coordinates to a point shape in screen coordinates.// | ||
| - | == Remarks == | ||
| - | * //This method converts X, Y world coordinates to a point in screen coordinates.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | * Description:A screen point in pixels. | ||
| - | |||
| - | == Parameters == | ||
| - | * //worldX// | ||
| - | * Type:Double | ||
| - | * Description:The X world coordinate. | ||
| - | |||
| - | * //worldY// | ||
| - | * Type:Double | ||
| - | * Description:The Y world coordinate. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ToScreenCoordinate(PointShape) ** | ||
| - | |||
| - | * //This method converts a specified PointShape in world coordinates to a point shape in screen coordinates.// | ||
| - | == Remarks == | ||
| - | * //This method converts the coordinates of a point shape to a point in screen coordinates.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | * Description:A screen point in pixels. | ||
| - | |||
| - | == Parameters == | ||
| - | * //worldCoordinate// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | * Description:A point shape in world coordinates. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ToScreenCoordinate(Point) ** | ||
| - | |||
| - | * //This method converts a specified PointShape in world coordinates to a point shape in screen coordinates.// | ||
| - | == Remarks == | ||
| - | * //This method converts the coordinates of a point shape to a point in screen coordinates.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | * Description:A screen point in pixels. | ||
| - | |||
| - | == Parameters == | ||
| - | * //worldCoordinate// | ||
| - | * Type:Point | ||
| - | * Description:A point in world coordinates. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} FindName(String) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //name// | ||
| - | * Type:String | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} OnApplyTemplate() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} SetBinding(DependencyProperty,Binding) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:BindingExpressionBase | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //binding// | ||
| - | * Type:Binding | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} GetBindingExpression(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:BindingExpression | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} AddHandler(RoutedEvent,Delegate,Boolean) ** | ||
| - | |||
| - | * //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 | ||
| - | |||
| - | * //handledEventsToo// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} RemoveHandler(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 | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} TransformToVisual(UIElement) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:GeneralTransform | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //visual// | ||
| - | * Type:UIElement | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} Measure(Size) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //availableSize// | ||
| - | * Type:Size | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} Arrange(Rect) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //finalRect// | ||
| - | * Type:Rect | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} CaptureMouse() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ReleaseMouseCapture() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} InvalidateMeasure() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} InvalidateArrange() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} UpdateLayout() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} CheckAccess() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} SetValue(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 | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ClearValue(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ReadLocalValue(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} GetAnimationBaseValue(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} GetValue(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} ToString() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:String | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} Equals(Object) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //obj// | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} GetHashCode() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Int32 | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:PublicMethod.gif|}} GetType() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Type | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ==== Protected Methods ==== | ||
| - | ** {{wiki:ProtectedMethod.gif|}} eRQ=(Point,Int32) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]] | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //targetCenter// | ||
| - | * Type:Point | ||
| - | * Description:N/A | ||
| - | |||
| - | * //zoomLevel// | ||
| - | * Type:Int32 | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} YhQ=(PointShape,Int32,OverlayDrawType) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //targetCenter// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | * Description:N/A | ||
| - | |||
| - | * //zoomLevelId// | ||
| - | * Type:Int32 | ||
| - | * Description:N/A | ||
| - | |||
| - | * //overlayDrawType// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.OverlayDrawType|OverlayDrawType]] | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} YhQ=(Point,Int32,OverlayDrawType) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //targetCenter// | ||
| - | * Type:Point | ||
| - | * Description:N/A | ||
| - | |||
| - | * //zoomLevelId// | ||
| - | * Type:Int32 | ||
| - | * Description:N/A | ||
| - | |||
| - | * //overlayDrawType// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.OverlayDrawType|OverlayDrawType]] | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} ZRQ=(Single,Int32,OverlayDrawType) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //degree// | ||
| - | * Type:Single | ||
| - | * Description:N/A | ||
| - | |||
| - | * //percentage// | ||
| - | * Type:Int32 | ||
| - | * Description:N/A | ||
| - | |||
| - | * //overlayDrawType// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.OverlayDrawType|OverlayDrawType]] | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} ZRQ=(Double,Double,OverlayDrawType) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //offsetScreenX// | ||
| - | * Type:Double | ||
| - | * Description:N/A | ||
| - | |||
| - | * //offsetScreenY// | ||
| - | * Type:Double | ||
| - | * Description:N/A | ||
| - | |||
| - | * //overlayDrawType// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.OverlayDrawType|OverlayDrawType]] | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnClick(MapClickEventArgs) ** | ||
| - | |||
| - | * //This method raises the Click event of the Map object.// | ||
| - | == Remarks == | ||
| - | * //The OnClick method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.Notes to Inheritors: When overriding OnClick in a derived class, be sure to call the base class's OnClick method so that registered delegates receive the event.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //e// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.MapClickEventArgs|MapClickEventArgs]] | ||
| - | * Description:The MapClickEventArgs that contains event data. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnDoubleClick(MapClickEventArgs) ** | ||
| - | |||
| - | * //This method raises the DoubleClick event of the Map object.// | ||
| - | == Remarks == | ||
| - | * //The DoubleClick method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.Notes to Inheritors: When overriding OnDoubleClick in a derived class, be sure to call the base class's OnDoubleClick method so that registered delegates receive the event.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //e// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.MapClickEventArgs|MapClickEventArgs]] | ||
| - | * Description:The MapClickEventArgs that contains event data. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnExtentChanging(ExtentChangingEventArgs) ** | ||
| - | |||
| - | * //This method raises the ExtentChanging event of the Map object.// | ||
| - | == Remarks == | ||
| - | * //The OnExtentChanging method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.Notes to Inheritors: When overriding OnExtentChanging in a derived class, be sure to call the base class's OnExtentChanging method so that registered delegates receive the event.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //e// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.ExtentChangingEventArgs|ExtentChangingEventArgs]] | ||
| - | * Description:The MapClickEventArgs that contains event data. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnExtentChanged(ExtentChangedEventArgs) ** | ||
| - | |||
| - | * //This event raises the ExtentChanged event of the Map object.// | ||
| - | == Remarks == | ||
| - | * //The OnExtentChanged method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.Notes to Inheritors: When overriding OnExtentChanged in a derived class, be sure to call the base class's OnExtentChanged method so that registered delegates receive the event.// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //e// | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.ExtentChangedEventArgs|ExtentChangedEventArgs]] | ||
| - | * Description:The MapClickEventArgs that contains event data. | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} MeasureOverride(Size) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Size | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //constraint// | ||
| - | * Type:Size | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} ArrangeOverride(Size) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Size | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //arrangeSize// | ||
| - | * Type:Size | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} ApplyTemplateInternal() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetValueInternal(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnTreeParentUpdated(DependencyObject,Boolean) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //newParent// | ||
| - | * Type:DependencyObject | ||
| - | * Description:N/A | ||
| - | |||
| - | * //bIsNewParentAlive// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} NotifyDataContextChanged(DataContextChangedEventArgs) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //e// | ||
| - | * Type:DataContextChangedEventArgs | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnBindingValidationError(ValidationErrorEventArgs) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //args// | ||
| - | * Type:ValidationErrorEventArgs | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} CalculateBubblePath() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:List<FrameworkElement> | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} RaiseBindingValidationError(ValidationErrorEventArgs) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //args// | ||
| - | * Type:ValidationErrorEventArgs | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnSizeChanged(Object,SizeChangedEventArgs) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //sender// | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | * //e// | ||
| - | * Type:SizeChangedEventArgs | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnAncestorDataContextChanged(DataContextChangedEventArgs) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //e// | ||
| - | * Type:DataContextChangedEventArgs | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} IsDataContextChangeRelevant(DataContextChangedEventArgs) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //e// | ||
| - | * Type:DataContextChangedEventArgs | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnDataContextChanged(DataContextChangedEventArgs) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //e// | ||
| - | * Type:DataContextChangedEventArgs | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnPropertyChanged(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetValueFromStyle(DependencyProperty,Object&) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //value// | ||
| - | * Type:Object& | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} HasFocus() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} FindNameInPage(String,Boolean) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //name// | ||
| - | * Type:String | ||
| - | * Description:N/A | ||
| - | |||
| - | * //calledFromUserControl// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetPlainText() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:String | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} HitTest(Point) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:IEnumerable<UIElement> | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //point// | ||
| - | * Type:Point | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} HitTest(Rect) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:IEnumerable<UIElement> | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //rect// | ||
| - | * Type:Rect | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} IsAncestorOf(UIElement) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //element// | ||
| - | * Type:UIElement | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnCreateAutomationPeer() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:AutomationPeer | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetOrCreateAutomationPeer() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:AutomationPeer | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetAutomationPeer() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:AutomationPeer | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} InvalidateAutomationPeer() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetChildrenCount() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Int32 | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetChild(Int32) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:UIElement | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //childIndex// | ||
| - | * Type:Int32 | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} BringIntoView() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} BringIntoView(Rect) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //targetRectangle// | ||
| - | * Type:Rect | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetIsUnloadingNode() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} PegManagedPeerNoRef() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} UnpegManagedPeerNoRef() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetManagedReference(UInt32) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:DependencyObject | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //nPropertyID// | ||
| - | * Type:UInt32 | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} RefreshExpression(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} EnsureValueTable() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{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 | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValueInternal(DependencyProperty,Object,Boolean) ** | ||
| - | |||
| - | * //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 | ||
| - | |||
| - | * //allowReadOnlySet// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValueInternal(DependencyProperty,Object,Boolean,Boolean) ** | ||
| - | |||
| - | * //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 | ||
| - | |||
| - | * //allowReadOnlySet// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | * //isBindingInStyleSetter// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} ClearValueInternal(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} ReadLocalValueInternal(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} IsPropertyDefault(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetMentor() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:FrameworkElement | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} PrepareCorePropertyExpression(DependencyProperty,Object) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //value// | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} InvalidateStyleBinding(DependencyProperty,Boolean&) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //hasLocalOrAnimatedValue// | ||
| - | * Type:Boolean& | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyProperty,Matrix) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //m// | ||
| - | * Type:Matrix | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyProperty,Matrix3D) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //m// | ||
| - | * Type:Matrix3D | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyProperty,Point) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //p// | ||
| - | * Type:Point | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyProperty,DependencyObject) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //doh// | ||
| - | * Type:DependencyObject | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyProperty,Int32) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //i// | ||
| - | * Type:Int32 | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyProperty,Boolean) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //b// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyProperty,Enum) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //e// | ||
| - | * Type:Enum | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyProperty,Color) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //c// | ||
| - | * Type:Color | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyProperty,Double) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //d// | ||
| - | * Type:Double | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetValue(DependencyProperty,GridLength) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //g// | ||
| - | * Type:GridLength | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} InvalidateProperty(DependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetOldValue(DependencyProperty,EffectiveValueEntry&) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //oldEntry// | ||
| - | * Type:EffectiveValueEntry& | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetNewValue(DependencyProperty,EffectiveValueEntry&) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //newEntry// | ||
| - | * Type:EffectiveValueEntry& | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetEffectiveValue(DependencyProperty,EffectiveValueEntry&,Object) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //newEntry// | ||
| - | * Type:EffectiveValueEntry& | ||
| - | * Description:N/A | ||
| - | |||
| - | * //newValue// | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} UpdateParentInheritanceContextPropagation() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} SetAnimatedValue(DependencyProperty,Object) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //animatedValue// | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} ClearAnimatedValue(DependencyProperty,Boolean,Object) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //hasHoldEndValue// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | * //holdEndValue// | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} GetValueFromBuiltInStyle(DependencyProperty,Object&) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //value// | ||
| - | * Type:Object& | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnInheritanceContextChanged(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 | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} AddEventListener(DependencyProperty,Delegate) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //handler// | ||
| - | * Type:Delegate | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} AddEventListener(DependencyProperty,Delegate,Boolean) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //handler// | ||
| - | * Type:Delegate | ||
| - | * Description:N/A | ||
| - | |||
| - | * //handledEventsToo// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} RemoveEventListener(DependencyProperty,Delegate) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //property// | ||
| - | * Type:DependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | * //handler// | ||
| - | * Type:Delegate | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} UpdateTreeParent(IManagedPeer,IManagedPeer,Boolean,Boolean) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //oldParent// | ||
| - | * Type:IManagedPeer | ||
| - | * Description:N/A | ||
| - | |||
| - | * //newParent// | ||
| - | * Type:IManagedPeer | ||
| - | * Description:N/A | ||
| - | |||
| - | * //bIsNewParentAlive// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | * //keepReferenceToParent// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} UpdateTreeParentHelper(IManagedPeer,IManagedPeer,Boolean) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //oldParent// | ||
| - | * Type:IManagedPeer | ||
| - | * Description:N/A | ||
| - | |||
| - | * //newParent// | ||
| - | * Type:IManagedPeer | ||
| - | * Description:N/A | ||
| - | |||
| - | * //keepReferenceToParent// | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} IsPropertyLocal(CoreDependencyProperty) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //dp// | ||
| - | * Type:CoreDependencyProperty | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} OnParentEnter(IntPtr,UInt32,UInt32,UInt32,UInt32) ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | * //nativeNamescopeOwner// | ||
| - | * Type:IntPtr | ||
| - | * Description:N/A | ||
| - | |||
| - | * //bLive// | ||
| - | * Type:UInt32 | ||
| - | * Description:N/A | ||
| - | |||
| - | * //bSkipNameRegistration// | ||
| - | * Type:UInt32 | ||
| - | * Description:N/A | ||
| - | |||
| - | * //bCoercedIsEnabled// | ||
| - | * Type:UInt32 | ||
| - | * Description:N/A | ||
| - | |||
| - | * //bUseLayoutRounding// | ||
| - | * Type:UInt32 | ||
| - | * Description:N/A | ||
| - | |||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} Finalize() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Void | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** | ||
| - | |||
| - | * //N/A// | ||
| - | == Remarks == | ||
| - | * //N/A// | ||
| - | |||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | * Description:N/A | ||
| - | |||
| - | == Parameters == | ||
| - | <div newline></div> | ||
| - | ==== Public Properties ==== | ||
| - | ** {{wiki:PublicProperty.gif|}} ZoomLevelSet ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.ZoomLevelSet|ZoomLevelSet]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Overlays ** | ||
| - | |||
| - | Gets an Overlay collection which you can add different types of overlays. | ||
| - | == Remarks == | ||
| - | You can create any type of Overlay object and add it to the Overlays collection. The overlays will be stack by its adding order. | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeoCollection<T>[[ThinkGeo.MapSuite.SilverlightEdition.Overlay, SilverlightEdition, Version=9.0.0.0, Culture=neutral, PublicKeyToken=null]]|GeoCollection<T>]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} MapUnit ** | ||
| - | |||
| - | Gets or sets the GeographyUnit for the map. | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeographyUnit|GeographyUnit]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} MapTools ** | ||
| - | |||
| - | Gets an object that contains all types of predefined map controls. | ||
| - | == Remarks == | ||
| - | The property returns an object that contains all types of predefined map controls. Such as mouse coordinates etc. | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.MapTools|MapTools]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} ActiveBaseOverlay ** | ||
| - | |||
| - | Gets or sets the active base overlay. | ||
| - | == Remarks == | ||
| - | The map can contain multiple base overlays, though only one of them can be displayed at a time. The ActiveBaseOverlay property specifies the one that is currently displayed. When you switch the base overlays in the OverlaySwitcher, the currently selected overlay will be synchronized to this property after postback. | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.Overlay|Overlay]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} CurrentZoomLevelId ** | ||
| - | |||
| - | Gets a integar value that indicates current zoom level id. | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Int32 | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} CurrentScale ** | ||
| - | |||
| - | Gets a double value that indicates the current scale of the map. | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} CurrentResolution ** | ||
| - | |||
| - | Gets a double value that indicates the current resolution of the map. | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} CurrentExtent ** | ||
| - | |||
| - | Gets or sets the current extent of the map. | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} RestrictedExtent ** | ||
| - | |||
| - | Gets or sets the restricted extent of the map. | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} MaxExtent ** | ||
| - | |||
| - | Gets the max extent of the map in current map unit. | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.RectangleShape|RectangleShape]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} CurrentCenter ** | ||
| - | |||
| - | Gets a PointShape value that indicates current center of the map. | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.PointShape|PointShape]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Popups ** | ||
| - | |||
| - | Gets a Popup collection that holds all the popups in the map. | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeoCollection<T>[[ThinkGeo.MapSuite.SilverlightEdition.GeoPopup, SilverlightEdition, Version=9.0.0.0, Culture=neutral, PublicKeyToken=null]]|GeoCollection<T>]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} InteractiveOverlays ** | ||
| - | |||
| - | Gets an collection which holds all kind of InteractiveOverlay. | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightCore.GeoCollection<T>[[ThinkGeo.MapSuite.SilverlightEdition.Overlay, SilverlightEdition, Version=9.0.0.0, Culture=neutral, PublicKeyToken=null]]|GeoCollection<T>]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} LayoutPanel ** | ||
| - | |||
| - | Gets a grid panel for maintaining map tools. | ||
| - | == Remarks == | ||
| - | Gets a grid panel for maintaining map tools. The tools are layouted by the column and row index in the Grid Panel.It accepts the custom Silverlight controls as well. | ||
| - | == Return Value == | ||
| - | * Type:Grid | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} ExtentInteractiveOverlay ** | ||
| - | |||
| - | Gets or sets an InteractiveOverlay which mantains the navigation of the map. | ||
| - | == Remarks == | ||
| - | Gets or sets an InteractiveOverlay which mantains the navigation of the map such as panning, zooming etc. | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.ExtentInteractiveOverlay|ExtentInteractiveOverlay]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} TrackOverlay ** | ||
| - | |||
| - | Gets or sets an InteractiveOverlay which maintain the algorism of Tracking Shape. | ||
| - | == Remarks == | ||
| - | Gets or sets an InteractiveOverlay which maintain the algorism of Tracking. | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.TrackInteractiveOverlay|TrackInteractiveOverlay]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} EditOverlay ** | ||
| - | |||
| - | Gets or sets an InteractiveOverlay which maintain the algorism of Editing. | ||
| - | == Remarks == | ||
| - | Gets or sets an InteractiveOverlay which maintain the algorism of Editing Shape. | ||
| - | == Return Value == | ||
| - | * Type:[[ThinkGeo.MapSuite.SilverlightEdition.EditInteractiveOverlay|EditInteractiveOverlay]] | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Children ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:UIElementCollection | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Background ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Brush | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} IsItemsHost ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Triggers ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:TriggerCollection | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Resources ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:ResourceDictionary | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} ActualWidth ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} ActualHeight ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Width ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Height ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} MinWidth ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} MaxWidth ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} MinHeight ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} MaxHeight ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} HorizontalAlignment ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:HorizontalAlignment | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} VerticalAlignment ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:VerticalAlignment | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Margin ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Thickness | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Style ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Style | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Parent ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:DependencyObject | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} FlowDirection ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:FlowDirection | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Name ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:String | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Tag ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Cursor ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Cursor | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Language ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:XmlLanguage | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} DataContext ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} AllowDrop ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Opacity ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Double | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Clip ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Geometry | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Effect ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Effect | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Projection ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Projection | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} OpacityMask ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Brush | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} RenderTransformOrigin ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Point | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} IsHitTestVisible ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Visibility ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Visibility | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} RenderSize ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Size | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} UseLayoutRounding ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} CacheMode ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:CacheMode | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} DesiredSize ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Size | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} RenderTransform ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Transform | ||
| - | |||
| - | ** {{wiki:PublicProperty.gif|}} Dispatcher ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Dispatcher | ||
| - | |||
| - | ==== Protected Properties ==== | ||
| - | ** {{wiki:ProtectedProperty.gif|}} XBQ= ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Collection<Double> | ||
| - | |||
| - | ** {{wiki:ProtectedProperty.gif|}} XhQ= ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Canvas | ||
| - | |||
| - | ** {{wiki:ProtectedProperty.gif|}} TagInternal ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Object | ||
| - | |||
| - | ** {{wiki:ProtectedProperty.gif|}} TemplatedParent ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:DependencyObject | ||
| - | |||
| - | ** {{wiki:ProtectedProperty.gif|}} IsDataContextBound ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | |||
| - | ** {{wiki:ProtectedProperty.gif|}} IsDataContextChangingInternal ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | |||
| - | ** {{wiki:ProtectedProperty.gif|}} ChildrenInternal ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:UIElementCollection | ||
| - | |||
| - | ** {{wiki:ProtectedProperty.gif|}} NativeObject ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:IntPtr | ||
| - | |||
| - | ** {{wiki:ProtectedProperty.gif|}} NativeObjectSafeHandle ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:NativeObjectSafeHandle | ||
| - | |||
| - | ** {{wiki:ProtectedProperty.gif|}} NeedsInheritanceContextChanges ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | |||
| - | ** {{wiki:ProtectedProperty.gif|}} IsInLiveTree ** | ||
| - | |||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | == Return Value == | ||
| - | * Type:Boolean | ||
| - | |||
| - | ==== Public Events ==== | ||
| - | ** {{wiki:PublicEvent.gif|}} ExtentChanging ** | ||
| - | This event is raised before current extent of map changing. | ||
| - | == Remarks == | ||
| - | This event is raised when the map's extent is about to change. In the event argument, it contains current extent and current scale of the map. | ||
| - | |||
| - | Event Arguments:[[ThinkGeo.MapSuite.SilverlightEdition.ExtentChangingEventArgs|ExtentChangingEventArgs]] | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} ExtentChanged ** | ||
| - | This event is raised after map's extent changed. | ||
| - | == Remarks == | ||
| - | This event is raised after the map's current extent changed. In the event arguments, it contains the new extent and new scale of the map. | ||
| - | |||
| - | Event Arguments:[[ThinkGeo.MapSuite.SilverlightEdition.ExtentChangedEventArgs|ExtentChangedEventArgs]] | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} Click ** | ||
| - | This event is raised when the map is clicked. | ||
| - | == Remarks == | ||
| - | This event is raised when the map is clicked. In the event argument, it contains current clicked point in world coordinates and screen coordinates. | ||
| - | |||
| - | Event Arguments:[[ThinkGeo.MapSuite.SilverlightEdition.MapClickEventArgs|MapClickEventArgs]] | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} DoubleClick ** | ||
| - | This event is raised when the map is double clicked. | ||
| - | == Remarks == | ||
| - | This event is raised when the map is double clicked.In the event argument, it contains current clicked point in world coordinates and screen coordinates.When the click event and double click event are both hooked, only double click event will be raised. | ||
| - | |||
| - | Event Arguments:[[ThinkGeo.MapSuite.SilverlightEdition.MapClickEventArgs|MapClickEventArgs]] | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} Loaded ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} Unloaded ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} SizeChanged ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} LayoutUpdated ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} BindingValidationError ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments:ValidationErrorEventArgs | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} DataContextChanged ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} MouseMove ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} MouseEnter ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} MouseLeave ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} MouseLeftButtonDown ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} MouseLeftButtonUp ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} MouseRightButtonDown ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} MouseRightButtonUp ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} MouseWheel ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} KeyUp ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} KeyDown ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} MediaCommand ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} GotFocus ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} LostFocus ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} LostMouseCapture ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} TextInput ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} TextInputStart ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} TextInputUpdate ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} DragEnter ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} DragLeave ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} DragOver ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} Drop ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments: | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} ManipulationStarted ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments:ManipulationStartedEventArgs | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} ManipulationDelta ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments:ManipulationDeltaEventArgs | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} ManipulationCompleted ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments:ManipulationCompletedEventArgs | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} Tap ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments:GestureEventArgs | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} DoubleTap ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments:GestureEventArgs | ||
| - | |||
| - | ** {{wiki:PublicEvent.gif|}} Hold ** | ||
| - | N/A | ||
| - | == Remarks == | ||
| - | N/A | ||
| - | |||
| - | Event Arguments:GestureEventArgs | ||
| - | |||
8501 Wade Blvd Ste 550
Frisco, TX 75034
United States
sales@thinkgeo.com
1-785-727-4133
Online Store
- Desktop
WPF
WinForms
- Web
WebAPI HTML5/JavaScript
ASP.NET MVC
WebForms with AJAX
- Mobile
iOS
Android™
World Street
World Imagery
Routing
Geocoding
Reverse Geocoding
Elevation
Quick Start Guides
Documentation
Blogs
Discussion Forums
Customer Portal
About Us
News & Announcemets
Privacy Policy
Copyright 2003-2017 ThinkGeo LLC.
All rights reserved.