User Tools

Site Tools


thinkgeo.mapsuite.desktopedition.winformsmap

ThinkGeo.MapSuite.DesktopEdition.WinformsMap

Note: The page was created before Map Suite 10. Map Suite 10.0 organized many classes into new namespaces and assemblies as well as had a few minor breaks in compatibility. The majority of previously built code should work without modification assuming the new namespaces are added. For guidance on upgrading your existing code, please check out MapSuite 10 Upgrade Guide.

The Map Control used to develop a Winforms application.

Inheritance Hierarchy

  • System.Object
    • System.MarshalByRefObject
      • System.ComponentModel.Component
        • System.Windows.Forms.Control
          • ThinkGeo.MapSuite.DesktopEdition.WinformsMap

Members Summary

Public Constructors

WinformsMap()

  • Constructor of the Winform MapControl.
Remarks
  • In this constructor, we will initialize some class modular variables and hook up some events.
Parameters

Protected Constructors

Public Methods

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.WinformsMap#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
    • Description:This parameter is the screen Point you want to center on.

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.WinformsMap#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.

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.WinformsMap#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
    • Description:This parameter is the offset Screen Point.

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.WinformsMap#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.

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.

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
    • 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.

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:Feature
    • Description:This parameter is the feature you want to center on.

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.

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
    • Description:This parameter is the world point you want to center on.

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
    • Description:This parameter is the screen point you want to center on.

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.WinformsMap#FindFeatureLayer.28String.29
Return Value
  • 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.

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.WinformsMap#FindRasterLayer.28String.29
Return Value
  • 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.

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

ZoomToNextExtent()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ZoomToNextExtent.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

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.WinformsMap#ToggleMapExtents.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

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.WinformsMap#Refresh.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

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.WinformsMap#Refresh.28Overlay.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • overlay

Refresh(RectangleShape)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Refresh.28RectangleShape.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

Refresh(RectangleShape,Overlay)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Refresh.28RectangleShape.2C_Overlay.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • overlay

Refresh(IEnumerable<Overlay>)

  • 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
  • overlays
    • Type:IEnumerable<Overlay>
    • Description:N/A

Refresh(RectangleShape,IEnumerable<Overlay>)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • overlays
    • Type:IEnumerable<Overlay>
    • Description:N/A

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.WinformsMap#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

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.WinformsMap#Dispose.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

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.WinformsMap#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.

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.WinformsMap#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:Feature
    • Description:This parameter is the feature you want to center on.

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.WinformsMap#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
    • Description:This parameter is the world point you want to center on.

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.WinformsMap#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.

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.WinformsMap#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
    • Description:This parameter is the screen point you want to center on.

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.WinformsMap#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.

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.WinformsMap#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:Feature
    • Description:This parameter is the feature you want to center on.

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.WinformsMap#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
    • Description:This parameter is the world Point you want to center on.

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.WinformsMap#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.

ResetBindings()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ResetBindings.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

GetPreferredSize(Size)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetPreferredSize.28Size.29
Return Value
  • Type:Size
  • Description:N/A
Parameters
  • proposedSize
    • Type:Size
    • Description:N/A

BeginInvoke(Delegate)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#BeginInvoke.28Delegate.29
Return Value
  • Type:IAsyncResult
  • Description:N/A
Parameters
  • method
    • Type:Delegate
    • Description:N/A

BeginInvoke(Delegate,Object[])

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:
Return Value
  • Type:IAsyncResult
  • Description:N/A
Parameters
  • method
    • Type:Delegate
    • Description:N/A
  • args
    • Type:Object[]
    • Description:N/A

BringToFront()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#BringToFront.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

Contains(Control)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Contains.28Control.29
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • ctl
    • Type:Control
    • Description:N/A

CreateGraphics()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#CreateGraphics.28.29
Return Value
  • Type:Graphics
  • Description:N/A
Parameters

CreateControl()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#CreateControl.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

DoDragDrop(Object,DragDropEffects)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#DoDragDrop.28Object.2C_DragDropEffects.29
Return Value
  • Type:DragDropEffects
  • Description:N/A
Parameters
  • data
    • Type:Object
    • Description:N/A
  • allowedEffects
    • Type:DragDropEffects
    • Description:N/A

DrawToBitmap(Bitmap,Rectangle)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#DrawToBitmap.28Bitmap.2C_Rectangle.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • bitmap
    • Type:Bitmap
    • Description:N/A
  • targetBounds
    • Type:Rectangle
    • Description:N/A

EndInvoke(IAsyncResult)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#EndInvoke.28IAsyncResult.29
Return Value
  • Type:Object
  • Description:N/A
Parameters
  • asyncResult
    • Type:IAsyncResult
    • Description:N/A

FindForm()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#FindForm.28.29
Return Value
  • Type:Form
  • Description:N/A
Parameters

Focus()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Focus.28.29
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

GetChildAtPoint(Point,GetChildAtPointSkip)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetChildAtPoint.28Point.2C_GetChildAtPointSkip.29
Return Value
  • Type:Control
  • Description:N/A
Parameters
  • pt
    • Type:Point
    • Description:N/A
  • skipValue
    • Type:GetChildAtPointSkip
    • Description:N/A

GetChildAtPoint(Point)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetChildAtPoint.28Point.29
Return Value
  • Type:Control
  • Description:N/A
Parameters
  • pt
    • Type:Point
    • Description:N/A

GetContainerControl()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetContainerControl.28.29
Return Value
  • Type:IContainerControl
  • Description:N/A
Parameters

GetNextControl(Control,Boolean)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetNextControl.28Control.2C_Boolean.29
Return Value
  • Type:Control
  • Description:N/A
Parameters
  • ctl
    • Type:Control
    • Description:N/A
  • forward
    • Type:Boolean
    • Description:N/A

Hide()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Hide.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

Invalidate(Region)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Invalidate.28Region.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • region
    • Type:Region
    • Description:N/A

Invalidate(Region,Boolean)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Invalidate.28Region.2C_Boolean.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • region
    • Type:Region
    • Description:N/A
  • invalidateChildren
    • Type:Boolean
    • Description:N/A

Invalidate()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Invalidate.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

Invalidate(Boolean)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Invalidate.28Boolean.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • invalidateChildren
    • Type:Boolean
    • Description:N/A

Invalidate(Rectangle)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Invalidate.28Rectangle.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • rc
    • Type:Rectangle
    • Description:N/A

Invalidate(Rectangle,Boolean)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Invalidate.28Rectangle.2C_Boolean.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • rc
    • Type:Rectangle
    • Description:N/A
  • invalidateChildren
    • Type:Boolean
    • Description:N/A

Invoke(Delegate)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#BeginInvoke.28Delegate.29
Return Value
  • Type:Object
  • Description:N/A
Parameters
  • method
    • Type:Delegate
    • Description:N/A

Invoke(Delegate,Object[])

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:
Return Value
  • Type:Object
  • Description:N/A
Parameters
  • method
    • Type:Delegate
    • Description:N/A
  • args
    • Type:Object[]
    • Description:N/A

PerformLayout()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#PerformLayout.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

PerformLayout(Control,String)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#PerformLayout.28Control.2C_String.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • affectedControl
    • Type:Control
    • Description:N/A
  • affectedProperty
    • Type:String
    • Description:N/A

PointToClient(Point)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#PointToClient.28Point.29
Return Value
  • Type:Point
  • Description:N/A
Parameters
  • p
    • Type:Point
    • Description:N/A

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.WinformsMap#PointToScreen.28Point.29
Return Value
  • Type:Point
  • Description:N/A
Parameters
  • p
    • Type:Point
    • Description:N/A

PreProcessMessage(Message&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • msg
    • Type:Message&
    • Description:N/A

PreProcessControlMessage(Message&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:PreProcessControlState
  • Description:N/A
Parameters
  • msg
    • Type:Message&
    • Description:N/A

ResetBackColor()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ResetBackColor.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

ResetCursor()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ResetCursor.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

ResetFont()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ResetFont.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

ResetForeColor()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ResetForeColor.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

ResetRightToLeft()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ResetRightToLeft.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

RectangleToClient(Rectangle)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RectangleToClient.28Rectangle.29
Return Value
  • Type:Rectangle
  • Description:N/A
Parameters
  • r
    • Type:Rectangle
    • Description:N/A

RectangleToScreen(Rectangle)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RectangleToScreen.28Rectangle.29
Return Value
  • Type:Rectangle
  • Description:N/A
Parameters
  • r
    • Type:Rectangle
    • Description:N/A

ResetText()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ResetText.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

ResumeLayout()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ResumeLayout.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

ResumeLayout(Boolean)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ResumeLayout.28Boolean.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • performLayout
    • Type:Boolean
    • Description:N/A

Scale(Single)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • ratio
    • Type:Single
    • Description:N/A

Scale(Single,Single)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • dx
    • Type:Single
    • Description:N/A
  • dy
    • Type:Single
    • Description:N/A

Scale(SizeF)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Scale.28SizeF.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • factor
    • Type:SizeF
    • Description:N/A

Select()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Select.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

SelectNextControl(Control,Boolean,Boolean,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.WinformsMap#SelectNextControl.28Control.2C_Boolean.2C_Boolean.2C_Boolean.2C_Boolean.29
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • ctl
    • Type:Control
    • Description:N/A
  • forward
    • Type:Boolean
    • Description:N/A
  • tabStopOnly
    • Type:Boolean
    • Description:N/A
  • nested
    • Type:Boolean
    • Description:N/A
  • wrap
    • Type:Boolean
    • Description:N/A

SendToBack()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#SendToBack.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

SetBounds(Int32,Int32,Int32,Int32)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#SetBounds.28Int32.2C_Int32.2C_Int32.2C_Int32.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • x
    • Type:Int32
    • Description:N/A
  • y
    • Type:Int32
    • Description:N/A
  • width
    • Type:Int32
    • Description:N/A
  • height
    • Type:Int32
    • Description:N/A

SetBounds(Int32,Int32,Int32,Int32,BoundsSpecified)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#SetBounds.28Int32.2C_Int32.2C_Int32.2C_Int32.2C_BoundsSpecified.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • x
    • Type:Int32
    • Description:N/A
  • y
    • Type:Int32
    • Description:N/A
  • width
    • Type:Int32
    • Description:N/A
  • height
    • Type:Int32
    • Description:N/A
  • specified
    • Type:BoundsSpecified
    • Description:N/A

Show()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Show.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

SuspendLayout()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#SuspendLayout.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

Update()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Update.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

ResetImeMode()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ResetImeMode.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

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.WinformsMap#Dispose.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

ToString()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ToString.28.29
Return Value
  • Type:String
  • Description:N/A
Parameters

GetLifetimeService()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetLifetimeService.28.29
Return Value
  • Type:Object
  • Description:N/A
Parameters

InitializeLifetimeService()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#InitializeLifetimeService.28.29
Return Value
  • Type:Object
  • Description:N/A
Parameters

CreateObjRef(Type)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#CreateObjRef.28Type.29
Return Value
  • Type:ObjRef
  • Description:N/A
Parameters
  • requestedType
    • Type:Type
    • Description:N/A

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.WinformsMap#Equals.28Object.29
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • obj
    • Type:Object
    • Description:N/A

GetHashCode()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetHashCode.28.29
Return Value
  • Type:Int32
  • Description:N/A
Parameters

GetType()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetType.28.29
Return Value
  • Type:Type
  • Description:N/A
Parameters

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.WinformsMap#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

OnPaint(PaintEventArgs)

  • This method overrides the OnPaint API of the Canvas which the WinformsMap Control inherits from.
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnPaint.28PaintEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:PaintEventArgs
    • Description:The events args for the OnPaint API.

Dispose(Boolean)

  • Releases the unmanaged resources used by the Map Control and its child controls. Optionally, releases the managed resources as well.
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Dispose.28Boolean.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • disposing
    • Type:Boolean
    • Description:True to release both managed and unmanaged resources; false to release only unmanaged resources.

OnMapClick(MapClickWinformsMapEventArgs)

  • 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.WinformsMap#OnMapClick.28MapClickWinformsMapEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnOverlaysDrawing(OverlaysDrawingWinformsMapEventArgs)

  • 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.WinformsMap#OnOverlaysDrawing.28OverlaysDrawingWinformsMapEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnOverlaysDrawn(OverlaysDrawnWinformsMapEventArgs)

  • 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.WinformsMap#OnOverlaysDrawn.28OverlaysDrawnWinformsMapEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnOverlayDrawing(OverlayDrawingWinformsMapEventArgs)

  • 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.WinformsMap#OnOverlayDrawing.28OverlayDrawingWinformsMapEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnOverlayDrawn(OverlayDrawnWinformsMapEventArgs)

  • 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.WinformsMap#OnOverlayDrawn.28OverlayDrawnWinformsMapEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnCurrentScaleChanged(CurrentScaleChangedWinformsMapEventArgs)

  • 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.WinformsMap#OnCurrentScaleChanged.28CurrentScaleChangedWinformsMapEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnCurrentExtentChanged(CurrentExtentChangedWinformsMapEventArgs)

  • 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.WinformsMap#OnCurrentExtentChanged.28CurrentExtentChangedWinformsMapEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnCurrentScaleChanging(CurrentScaleChangingWinformsMapEventArgs)

  • 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.WinformsMap#OnCurrentScaleChanging.28CurrentScaleChangingWinformsMapEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnCurrentExtentChanging(CurrentExtentChangingWinformsMapEventArgs)

  • 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.WinformsMap#OnCurrentExtentChanging.28CurrentExtentChangingWinformsMapEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

IsInputKey(Keys)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#IsInputKey.28Keys.29
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • keyData
    • Type:Keys
    • Description:N/A

GetAccessibilityObjectById(Int32)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetAccessibilityObjectById.28Int32.29
Return Value
  • Type:AccessibleObject
  • Description:N/A
Parameters
  • objectId
    • Type:Int32
    • Description:N/A

SetAutoSizeMode(AutoSizeMode)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#SetAutoSizeMode.28AutoSizeMode.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • mode
    • Type:AutoSizeMode
    • Description:N/A

GetAutoSizeMode()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetAutoSizeMode.28.29
Return Value
  • Type:AutoSizeMode
  • Description:N/A
Parameters

NotifyValidationResult(Object,CancelEventArgs)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • sender
    • Type:Object
    • Description:N/A
  • ev
    • Type:CancelEventArgs
    • Description:N/A

ValidateActiveControl(Boolean&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • validatedControlAllowsFocusChange
    • Type:Boolean&
    • Description:N/A

GetPreferredSizeCore(Size)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Size
  • Description:N/A
Parameters
  • proposedSize
    • Type:Size
    • Description:N/A

AddReflectChild()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

RemoveReflectChild()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

AccessibilityNotifyClients(AccessibleEvents,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • accEvent
    • Type:AccessibleEvents
    • Description:N/A
  • childID
    • Type:Int32
    • Description:N/A

AccessibilityNotifyClients(AccessibleEvents,Int32,Int32)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#AccessibilityNotifyClients.28AccessibleEvents.2C_Int32.2C_Int32.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • accEvent
    • Type:AccessibleEvents
    • Description:N/A
  • objectID
    • Type:Int32
    • Description:N/A
  • childID
    • Type:Int32
    • Description:N/A

AssignParent(Control)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • value
    • Type:Control
    • Description:N/A

BeginUpdateInternal()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

CanProcessMnemonic()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

CanSelectCore()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

CreateAccessibilityInstance()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#CreateAccessibilityInstance.28.29
Return Value
  • Type:AccessibleObject
  • Description:N/A
Parameters

CreateControlsInstance()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#CreateControlsInstance.28.29
Return Value
  • Type:ControlCollection
  • Description:N/A
Parameters

CreateGraphicsInternal()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Graphics
  • Description:N/A
Parameters

CreateHandle()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#CreateHandle.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

CreateControl(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • fIgnoreVisible
    • Type:Boolean
    • Description:N/A

DefWndProc(Message&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • m
    • Type:Message&
    • Description:N/A

DestroyHandle()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#DestroyHandle.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

DisposeAxControls()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

EndUpdateInternal()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

EndUpdateInternal(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • invalidate
    • Type:Boolean
    • Description:N/A

FindFormInternal()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Form
  • Description:N/A
Parameters

GetTopLevel()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetTopLevel.28.29
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

RaiseCreateHandleEvent(EventArgs)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

RaiseKeyEvent(Object,KeyEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RaiseKeyEvent.28Object.2C_KeyEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • key
    • Type:Object
    • Description:N/A
  • e
    • Type:KeyEventArgs
    • Description:N/A

RaiseMouseEvent(Object,MouseEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RaiseMouseEvent.28Object.2C_MouseEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • key
    • Type:Object
    • Description:N/A
  • e
    • Type:MouseEventArgs
    • Description:N/A

FocusInternal()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

ApplySizeConstraints(Int32,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Size
  • Description:N/A
Parameters
  • width
    • Type:Int32
    • Description:N/A
  • height
    • Type:Int32
    • Description:N/A

ApplySizeConstraints(Size)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Size
  • Description:N/A
Parameters
  • proposedSize
    • Type:Size
    • Description:N/A

ApplyBoundsConstraints(Int32,Int32,Int32,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Rectangle
  • Description:N/A
Parameters
  • suggestedX
    • Type:Int32
    • Description:N/A
  • suggestedY
    • Type:Int32
    • Description:N/A
  • proposedWidth
    • Type:Int32
    • Description:N/A
  • proposedHeight
    • Type:Int32
    • Description:N/A

IsUpdating()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

GetContainerControlInternal()

  • N/A
Remarks
  • N/A
Return Value
  • Type:IContainerControl
  • Description:N/A
Parameters

GetHRgn(Region)

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr
  • Description:N/A
Parameters
  • region
    • Type:Region
    • Description:N/A

GetScaledBounds(Rectangle,SizeF,BoundsSpecified)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetScaledBounds.28Rectangle.2C_SizeF.2C_BoundsSpecified.29
Return Value
  • Type:Rectangle
  • Description:N/A
Parameters
  • bounds
    • Type:Rectangle
    • Description:N/A
  • factor
    • Type:SizeF
    • Description:N/A
  • specified
    • Type:BoundsSpecified
    • Description:N/A

GetVisibleCore()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

GetAnyDisposingInHierarchy()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

GetChildControlsInTabOrder(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Control[]
  • Description:N/A
Parameters
  • handleCreatedOnly
    • Type:Boolean
    • Description:N/A

GetFirstChildControlInTabOrder(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Control
  • Description:N/A
Parameters
  • forward
    • Type:Boolean
    • Description:N/A

GetState(Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • flag
    • Type:Int32
    • Description:N/A

GetStyle(ControlStyles)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetStyle.28ControlStyles.29
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • flag
    • Type:ControlStyles
    • Description:N/A

InitLayout()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#InitLayout.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

InitializeDCForWmCtlColor(IntPtr,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr
  • Description:N/A
Parameters
  • dc
    • Type:IntPtr
    • Description:N/A
  • msg
    • Type:Int32
    • Description:N/A

InvokePaint(Control,PaintEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#InvokePaint.28Control.2C_PaintEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • c
    • Type:Control
    • Description:N/A
  • e
    • Type:PaintEventArgs
    • Description:N/A

InvokePaintBackground(Control,PaintEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#InvokePaintBackground.28Control.2C_PaintEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • c
    • Type:Control
    • Description:N/A
  • e
    • Type:PaintEventArgs
    • Description:N/A

IsFontSet()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

IsDescendant(Control)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • descendant
    • Type:Control
    • Description:N/A

IsInputChar(Char)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#IsInputChar.28Char.29
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • charCode
    • Type:Char
    • Description:N/A

NotifyEnter()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

NotifyLeave()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

NotifyInvalidate(Rectangle)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#NotifyInvalidate.28Rectangle.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • invalidatedArea
    • Type:Rectangle
    • Description:N/A

InvokeOnClick(Control,EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#InvokeOnClick.28Control.2C_EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • toInvoke
    • Type:Control
    • Description:N/A
  • e
    • Type:EventArgs
    • Description:N/A

OnAutoSizeChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnAutoSizeChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnBackColorChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnBackColorChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnBackgroundImageChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnBackgroundImageChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnBackgroundImageLayoutChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnBackgroundImageLayoutChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnBindingContextChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnBindingContextChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnCausesValidationChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnCausesValidationChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnChildLayoutResuming(Control,Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • child
    • Type:Control
    • Description:N/A
  • performLayout
    • Type:Boolean
    • Description:N/A

OnContextMenuChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnContextMenuChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnContextMenuStripChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnContextMenuStripChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnCursorChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnCursorChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnDockChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnDockChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnEnabledChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnEnabledChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnFrameWindowActivate(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • fActivate
    • Type:Boolean
    • Description:N/A

OnFontChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnFontChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnForeColorChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnForeColorChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnRightToLeftChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnRightToLeftChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnNotifyMessage(Message)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnNotifyMessage.28Message.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • m
    • Type:Message
    • Description:N/A

OnParentBackColorChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnParentBackColorChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnParentBackgroundImageChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnParentBackgroundImageChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnParentBindingContextChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnParentBindingContextChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnParentCursorChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnParentCursorChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnParentEnabledChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnParentEnabledChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnParentFontChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnParentFontChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnParentHandleRecreated()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnParentHandleRecreating()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnParentForeColorChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnParentForeColorChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnParentRightToLeftChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnParentRightToLeftChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnParentVisibleChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnParentVisibleChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnParentBecameInvisible()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnPrint(PaintEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnPrint.28PaintEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:PaintEventArgs
    • Description:N/A

OnTabIndexChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnTabIndexChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnTabStopChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnTabStopChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnTextChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnTextChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnVisibleChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnVisibleChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnTopMostActiveXParentChanged(EventArgs)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnParentChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnParentChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnClick(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnClick.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnClientSizeChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnClientSizeChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnControlAdded(ControlEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnControlAdded.28ControlEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:ControlEventArgs
    • Description:N/A

OnControlRemoved(ControlEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnControlRemoved.28ControlEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:ControlEventArgs
    • Description:N/A

OnCreateControl()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnCreateControl.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnHandleCreated(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnHandleCreated.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnInvokedSetScrollPosition(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

OnLocationChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnLocationChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnHandleDestroyed(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnHandleDestroyed.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnDoubleClick(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnDoubleClick.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

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.WinformsMap#OnDragEnter.28DragEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • drgevent
    • Type:DragEventArgs
    • Description:N/A

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.WinformsMap#OnDragOver.28DragEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • drgevent
    • Type:DragEventArgs
    • Description:N/A

OnDragLeave(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnDragLeave.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnDragDrop(DragEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnDragDrop.28DragEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • drgevent
    • Type:DragEventArgs
    • Description:N/A

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.WinformsMap#OnGiveFeedback.28GiveFeedbackEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • gfbevent
    • Type:GiveFeedbackEventArgs
    • Description:N/A

OnEnter(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnEnter.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

InvokeGotFocus(Control,EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#InvokeGotFocus.28Control.2C_EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • toInvoke
    • Type:Control
    • Description:N/A
  • e
    • Type:EventArgs
    • Description:N/A

OnGotFocus(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnGotFocus.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnHelpRequested(HelpEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnHelpRequested.28HelpEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • hevent
    • Type:HelpEventArgs
    • Description:N/A

OnInvalidated(InvalidateEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnInvalidated.28InvalidateEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:InvalidateEventArgs
    • Description:N/A

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.WinformsMap#OnKeyDown.28KeyEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:KeyEventArgs
    • Description:N/A

OnKeyPress(KeyPressEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnKeyPress.28KeyPressEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:KeyPressEventArgs
    • Description:N/A

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.WinformsMap#OnKeyUp.28KeyEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:KeyEventArgs
    • Description:N/A

OnLayout(LayoutEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnLayout.28LayoutEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • levent
    • Type:LayoutEventArgs
    • Description:N/A

OnLayoutResuming(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • performLayout
    • Type:Boolean
    • Description:N/A

OnLayoutSuspended()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnLeave(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnLeave.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

InvokeLostFocus(Control,EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#InvokeLostFocus.28Control.2C_EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • toInvoke
    • Type:Control
    • Description:N/A
  • e
    • Type:EventArgs
    • Description:N/A

OnLostFocus(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnLostFocus.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnMarginChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMarginChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnMouseDoubleClick(MouseEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMouseDoubleClick.28MouseEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:MouseEventArgs
    • Description:N/A

OnMouseClick(MouseEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMouseClick.28MouseEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:MouseEventArgs
    • Description:N/A

OnMouseCaptureChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMouseCaptureChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnMouseDown(MouseEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMouseDown.28MouseEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:MouseEventArgs
    • Description:N/A

OnMouseEnter(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMouseEnter.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnMouseLeave(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMouseLeave.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnMouseHover(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMouseHover.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

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.WinformsMap#OnMouseMove.28MouseEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:MouseEventArgs
    • Description:N/A

OnMouseUp(MouseEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMouseUp.28MouseEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:MouseEventArgs
    • Description:N/A

OnMouseWheel(MouseEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMouseWheel.28MouseEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:MouseEventArgs
    • Description:N/A

OnMove(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMove.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnPaddingChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnPaddingChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnPaintBackground(PaintEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnPaintBackground.28PaintEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • pevent
    • Type:PaintEventArgs
    • Description:N/A

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.WinformsMap#OnQueryContinueDrag.28QueryContinueDragEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • qcdevent
    • Type:QueryContinueDragEventArgs
    • Description:N/A

OnRegionChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnRegionChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnResize(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnResize.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnPreviewKeyDown(PreviewKeyDownEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnPreviewKeyDown.28PreviewKeyDownEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:PreviewKeyDownEventArgs
    • Description:N/A

OnSizeChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnSizeChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnChangeUICues(UICuesEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnChangeUICues.28UICuesEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:UICuesEventArgs
    • Description:N/A

OnStyleChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnStyleChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnSystemColorsChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnSystemColorsChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

OnValidating(CancelEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnValidating.28CancelEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:CancelEventArgs
    • Description:N/A

OnValidated(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnValidated.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

PaintBackground(PaintEventArgs,Rectangle)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:PaintEventArgs
    • Description:N/A
  • rectangle
    • Type:Rectangle
    • Description:N/A

PaintBackground(PaintEventArgs,Rectangle,Color)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:PaintEventArgs
    • Description:N/A
  • rectangle
    • Type:Rectangle
    • Description:N/A
  • backColor
    • Type:Color
    • Description:N/A

PaintBackground(PaintEventArgs,Rectangle,Color,Point)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:PaintEventArgs
    • Description:N/A
  • rectangle
    • Type:Rectangle
    • Description:N/A
  • backColor
    • Type:Color
    • Description:N/A
  • scrollOffset
    • Type:Point
    • Description:N/A

PaintTransparentBackground(PaintEventArgs,Rectangle)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:PaintEventArgs
    • Description:N/A
  • rectangle
    • Type:Rectangle
    • Description:N/A

PaintTransparentBackground(PaintEventArgs,Rectangle,Region)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:PaintEventArgs
    • Description:N/A
  • rectangle
    • Type:Rectangle
    • Description:N/A
  • transparentRegion
    • Type:Region
    • Description:N/A

PerformLayout(LayoutEventArgs)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • args
    • Type:LayoutEventArgs
    • Description:N/A

PerformControlValidation(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • bulkValidation
    • Type:Boolean
    • Description:N/A

PerformContainerValidation(ValidationConstraints)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • validationConstraints
    • Type:ValidationConstraints
    • Description:N/A

PointToClientInternal(Point)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Point
  • Description:N/A
Parameters
  • p
    • Type:Point
    • Description:N/A

ProcessCmdKey(Message&,Keys)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • msg
    • Type:Message&
    • Description:N/A
  • keyData
    • Type:Keys
    • Description:N/A

PrintToMetaFileRecursive(HandleRef,IntPtr,Rectangle)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • hDC
    • Type:HandleRef
    • Description:N/A
  • lParam
    • Type:IntPtr
    • Description:N/A
  • bounds
    • Type:Rectangle
    • Description:N/A

ProcessDialogChar(Char)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ProcessDialogChar.28Char.29
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • charCode
    • Type:Char
    • Description:N/A

ProcessDialogKey(Keys)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ProcessDialogKey.28Keys.29
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • keyData
    • Type:Keys
    • Description:N/A

ProcessKeyEventArgs(Message&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • m
    • Type:Message&
    • Description:N/A

ProcessKeyMessage(Message&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • m
    • Type:Message&
    • Description:N/A

ProcessKeyPreview(Message&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • m
    • Type:Message&
    • Description:N/A

ProcessMnemonic(Char)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • charCode
    • Type:Char
    • Description:N/A

ProcessUICues(Message&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • msg
    • Type:Message&
    • Description:N/A

RaiseDragEvent(Object,DragEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RaiseDragEvent.28Object.2C_DragEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • key
    • Type:Object
    • Description:N/A
  • e
    • Type:DragEventArgs
    • Description:N/A

RaisePaintEvent(Object,PaintEventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RaisePaintEvent.28Object.2C_PaintEventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • key
    • Type:Object
    • Description:N/A
  • e
    • Type:PaintEventArgs
    • Description:N/A

RecreateHandle()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RecreateHandle.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

RecreateHandleCore()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

ResetMouseEventArgs()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ResetMouseEventArgs.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

SetAcceptDrops(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • accept
    • Type:Boolean
    • Description:N/A

Scale(SizeF,SizeF,Control)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • includedFactor
    • Type:SizeF
    • Description:N/A
  • excludedFactor
    • Type:SizeF
    • Description:N/A
  • requestingControl
    • Type:Control
    • Description:N/A

ScaleChildControls(SizeF,SizeF,Control)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • includedFactor
    • Type:SizeF
    • Description:N/A
  • excludedFactor
    • Type:SizeF
    • Description:N/A
  • requestingControl
    • Type:Control
    • Description:N/A

ScaleControl(SizeF,SizeF,Control)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • includedFactor
    • Type:SizeF
    • Description:N/A
  • excludedFactor
    • Type:SizeF
    • Description:N/A
  • requestingControl
    • Type:Control
    • Description:N/A

ScaleControl(SizeF,BoundsSpecified)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ScaleControl.28SizeF.2C_BoundsSpecified.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • factor
    • Type:SizeF
    • Description:N/A
  • specified
    • Type:BoundsSpecified
    • Description:N/A

ScaleCore(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.WinformsMap#ScaleCore.28Single.2C_Single.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • dx
    • Type:Single
    • Description:N/A
  • dy
    • Type:Single
    • Description:N/A

ScaleSize(Size,Single,Single)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Size
  • Description:N/A
Parameters
  • startSize
    • Type:Size
    • Description:N/A
  • x
    • Type:Single
    • Description:N/A
  • y
    • Type:Single
    • Description:N/A

Select(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.WinformsMap#Select.28Boolean.2C_Boolean.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • directed
    • Type:Boolean
    • Description:N/A
  • forward
    • Type:Boolean
    • Description:N/A

SelectNextControlInternal(Control,Boolean,Boolean,Boolean,Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • ctl
    • Type:Control
    • Description:N/A
  • forward
    • Type:Boolean
    • Description:N/A
  • tabStopOnly
    • Type:Boolean
    • Description:N/A
  • nested
    • Type:Boolean
    • Description:N/A
  • wrap
    • Type:Boolean
    • Description:N/A

SendMessage(Int32,Int32,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr
  • Description:N/A
Parameters
  • msg
    • Type:Int32
    • Description:N/A
  • wparam
    • Type:Int32
    • Description:N/A
  • lparam
    • Type:Int32
    • Description:N/A

SendMessage(Int32,Int32&,Int32&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr
  • Description:N/A
Parameters
  • msg
    • Type:Int32
    • Description:N/A
  • wparam
    • Type:Int32&
    • Description:N/A
  • lparam
    • Type:Int32&
    • Description:N/A

SendMessage(Int32,Int32,IntPtr)

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr
  • Description:N/A
Parameters
  • msg
    • Type:Int32
    • Description:N/A
  • wparam
    • Type:Int32
    • Description:N/A
  • lparam
    • Type:IntPtr
    • Description:N/A

SendMessage(Int32,IntPtr,IntPtr)

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr
  • Description:N/A
Parameters
  • msg
    • Type:Int32
    • Description:N/A
  • wparam
    • Type:IntPtr
    • Description:N/A
  • lparam
    • Type:IntPtr
    • Description:N/A

SendMessage(Int32,IntPtr,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr
  • Description:N/A
Parameters
  • msg
    • Type:Int32
    • Description:N/A
  • wparam
    • Type:IntPtr
    • Description:N/A
  • lparam
    • Type:Int32
    • Description:N/A

SendMessage(Int32,Int32,RECT&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr
  • Description:N/A
Parameters
  • msg
    • Type:Int32
    • Description:N/A
  • wparam
    • Type:Int32
    • Description:N/A
  • lparam
    • Type:RECT&
    • Description:N/A

SendMessage(Int32,Boolean,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr
  • Description:N/A
Parameters
  • msg
    • Type:Int32
    • Description:N/A
  • wparam
    • Type:Boolean
    • Description:N/A
  • lparam
    • Type:Int32
    • Description:N/A

SendMessage(Int32,Int32,String)

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr
  • Description:N/A
Parameters
  • msg
    • Type:Int32
    • Description:N/A
  • wparam
    • Type:Int32
    • Description:N/A
  • lparam
    • Type:String
    • Description:N/A

SetBoundsCore(Int32,Int32,Int32,Int32,BoundsSpecified)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#SetBoundsCore.28Int32.2C_Int32.2C_Int32.2C_Int32.2C_BoundsSpecified.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • x
    • Type:Int32
    • Description:N/A
  • y
    • Type:Int32
    • Description:N/A
  • width
    • Type:Int32
    • Description:N/A
  • height
    • Type:Int32
    • Description:N/A
  • specified
    • Type:BoundsSpecified
    • Description:N/A

SetClientSizeCore(Int32,Int32)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#SetClientSizeCore.28Int32.2C_Int32.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • x
    • Type:Int32
    • Description:N/A
  • y
    • Type:Int32
    • Description:N/A

SizeFromClientSize(Size)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#SizeFromClientSize.28Size.29
Return Value
  • Type:Size
  • Description:N/A
Parameters
  • clientSize
    • Type:Size
    • Description:N/A

SizeFromClientSize(Int32,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Size
  • Description:N/A
Parameters
  • width
    • Type:Int32
    • Description:N/A
  • height
    • Type:Int32
    • Description:N/A

SetState(Int32,Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • flag
    • Type:Int32
    • Description:N/A
  • value
    • Type:Boolean
    • Description:N/A

SetState2(Int32,Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • flag
    • Type:Int32
    • Description:N/A
  • value
    • Type:Boolean
    • Description:N/A

SetStyle(ControlStyles,Boolean)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#SetStyle.28ControlStyles.2C_Boolean.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • flag
    • Type:ControlStyles
    • Description:N/A
  • value
    • Type:Boolean
    • Description:N/A

SetTopLevel(Boolean)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#SetTopLevel.28Boolean.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • value
    • Type:Boolean
    • Description:N/A

SetTopLevelInternal(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • value
    • Type:Boolean
    • Description:N/A

SetVisibleCore(Boolean)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#SetVisibleCore.28Boolean.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • value
    • Type:Boolean
    • Description:N/A

ShouldPerformContainerValidation()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

ShouldSerializeBackColor()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

ShouldSerializeCursor()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

ShouldSerializeForeColor()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

ShouldSerializeFont()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

ShouldSerializeRightToLeft()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

RtlTranslateAlignment(HorizontalAlignment)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RtlTranslateAlignment.28HorizontalAlignment.29
Return Value
  • Type:HorizontalAlignment
  • Description:N/A
Parameters
  • align
    • Type:HorizontalAlignment
    • Description:N/A

RtlTranslateAlignment(LeftRightAlignment)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RtlTranslateAlignment.28LeftRightAlignment.29
Return Value
  • Type:LeftRightAlignment
  • Description:N/A
Parameters
  • align
    • Type:LeftRightAlignment
    • Description:N/A

RtlTranslateAlignment(ContentAlignment)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RtlTranslateAlignment.28ContentAlignment.29
Return Value
  • Type:ContentAlignment
  • Description:N/A
Parameters
  • align
    • Type:ContentAlignment
    • Description:N/A

RtlTranslateHorizontal(HorizontalAlignment)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RtlTranslateHorizontal.28HorizontalAlignment.29
Return Value
  • Type:HorizontalAlignment
  • Description:N/A
Parameters
  • align
    • Type:HorizontalAlignment
    • Description:N/A

RtlTranslateLeftRight(LeftRightAlignment)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#RtlTranslateLeftRight.28LeftRightAlignment.29
Return Value
  • Type:LeftRightAlignment
  • Description:N/A
Parameters
  • align
    • Type:LeftRightAlignment
    • Description:N/A

RtlTranslateContent(ContentAlignment)

  • N/A
Remarks
  • N/A
Return Value
  • Type:ContentAlignment
  • Description:N/A
Parameters
  • align
    • Type:ContentAlignment
    • Description:N/A

ShouldSerializeMargin()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

ShouldSerializeMaximumSize()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

ShouldSerializeMinimumSize()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

ShouldSerializePadding()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

ShouldSerializeSize()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

ShouldSerializeText()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

UpdateBounds()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

UpdateBounds(Int32,Int32,Int32,Int32)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#UpdateBounds.28Int32.2C_Int32.2C_Int32.2C_Int32.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • x
    • Type:Int32
    • Description:N/A
  • y
    • Type:Int32
    • Description:N/A
  • width
    • Type:Int32
    • Description:N/A
  • height
    • Type:Int32
    • Description:N/A

UpdateBounds(Int32,Int32,Int32,Int32,Int32,Int32)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#UpdateBounds.28Int32.2C_Int32.2C_Int32.2C_Int32.2C_Int32.2C_Int32.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • x
    • Type:Int32
    • Description:N/A
  • y
    • Type:Int32
    • Description:N/A
  • width
    • Type:Int32
    • Description:N/A
  • height
    • Type:Int32
    • Description:N/A
  • clientWidth
    • Type:Int32
    • Description:N/A
  • clientHeight
    • Type:Int32
    • Description:N/A

UpdateZOrder()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#UpdateZOrder.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

UpdateStyles()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#UpdateStyles.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

UpdateStylesCore()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnBoundsUpdate(Int32,Int32,Int32,Int32)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • x
    • Type:Int32
    • Description:N/A
  • y
    • Type:Int32
    • Description:N/A
  • width
    • Type:Int32
    • Description:N/A
  • height
    • Type:Int32
    • Description:N/A

WindowAssignHandle(IntPtr,Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • handle
    • Type:IntPtr
    • Description:N/A
  • value
    • Type:Boolean
    • Description:N/A

WindowReleaseHandle()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

WmContextMenu(Message&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • m
    • Type:Message&
    • Description:N/A

WmContextMenu(Message&,Control)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • m
    • Type:Message&
    • Description:N/A
  • sourceControl
    • Type:Control
    • Description:N/A

WndProc(Message&)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • m
    • Type:Message&
    • Description:N/A

UpdateImeContextMode()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

VerifyImeRestrictedModeChanged()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnImeContextStatusChanged(IntPtr)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • handle
    • Type:IntPtr
    • Description:N/A

OnImeModeChanged(EventArgs)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnImeModeChanged.28EventArgs.29
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • e
    • Type:EventArgs
    • Description:N/A

ShouldSerializeImeMode()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters

WmImeSetFocus()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

Finalize()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Finalize.28.29
Return Value
  • Type:Void
  • Description:N/A
Parameters

GetService(Type)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GetService.28Type.29
Return Value
  • Type:Object
  • Description:N/A
Parameters
  • service
    • Type:Type
    • Description:N/A

GetComIUnknown(Boolean)

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr
  • Description:N/A
Parameters
  • fIsBeingMarshalled
    • Type:Boolean
    • Description:N/A

IsInstanceOfType(Type)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • T
    • Type:Type
    • Description:N/A

InvokeMember(String,BindingFlags,Binder,Object[],ParameterModifier[],CultureInfo,String[])

  • N/A
Remarks
  • N/A
Return Value
  • Type:Object
  • Description:N/A
Parameters
  • name
    • Type:String
    • Description:N/A
  • invokeAttr
    • Type:BindingFlags
    • Description:N/A
  • binder
    • Type:Binder
    • Description:N/A
  • args
    • Type:Object[]
    • Description:N/A
  • modifiers
    • Type:ParameterModifier[]
    • Description:N/A
  • culture
    • Type:CultureInfo
    • Description:N/A
  • namedParameters
    • Type:String[]
    • Description:N/A

MemberwiseClone(Boolean)

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#MemberwiseClone.28Boolean.29
Return Value
  • Type:MarshalByRefObject
  • Description:N/A
Parameters
  • cloneIdentity
    • Type:Boolean
    • Description:N/A

RaceSetServerIdentity(ServerIdentity) * N/A == Remarks == * N/A == Return Value == * Type:ServerIdentity * Description:N/A == Parameters == * id * Type:ServerIdentity * Description:N/A

ResetServerIdentity()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

CanCastToXmlType(String,String)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • xmlTypeName
    • Type:String
    • Description:N/A
  • xmlTypeNamespace
    • Type:String
    • Description:N/A

MemberwiseClone()

  • N/A
Remarks
  • For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#MemberwiseClone.28.29
Return Value
  • Type:Object
  • Description:N/A
Parameters

Public Properties

BackgroundOverlay

  • This property gets or sets the backgournd overlay.
Remarks
Return Value

EditOverlay

  • This property gets or sets the edit overlay in the MapControl.
Remarks
Return Value

TrackOverlay

  • This property gets or sets the track overlay in the MapControl.
Remarks
Return Value

InteractiveOverlays

  • This property gets the collection of InterativeOverlays 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
Remarks
Return Value

CurrentScale

  • Gets or sets the current scale of the MapControl.
Remarks
  • When you set the scale, the <strong>CurrentExtent</strong> will change, but the center of the <strong>CurrentExtent</strong> stays the same.
Return Value
  • Type:Double

CurrentExtent

  • Gets or sets the current extent of the MapControl.
Remarks
  • The current extent represents the extent of the map's current position. This is a very important metric used to calculate the map's scale.
Return Value

RestrictedExtent

  • N/A
Remarks
Return Value

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.WinformsMap#MapResizeMode// == Return Value == * Type:MapResizeMode 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 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 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:MapThreadingMode SmoothingMode * This property returns or sets the rendering quality for the drawing canvas. == Remarks == * This property is used for GDI+ drawing. The explanation below is from the GDI+ documentation. The smoothing mode specifies whether lines, curves, and the edges of filled areas use smoothing (also called antialiasing). One exception is that path gradient brushes does not obey the smoothing mode. Areas filled using a PathGradientBrush are rendered the same way (aliased) regardless of the SmoothingMode property. == Return Value == * Type:SmoothingMode TextRenderingHint * This property returns or sets the rendering mode for text associated with this GeoCanvas. == Remarks == * This property is used for GDI+ drawing. The explanation below is form the GDI+ documentation. The text rendering hint specifies whether text renders with antialiasing. == Return Value == * Type:TextRenderingHint CompositingQuality * This property returns or sets the quality level to use during compositing. == Remarks == * This property is used for GDI+ drawing. The explanation below is form the GDI+ documentation Compositing is done during rendering when the source pixels are combined with the destination pixels to produce the resultant pixels. The quality of compositing directly relates to the visual quality of the output and is inversely proportional to the render time. The higher the quality, the slower the render time. This is because the higher the quality level, the more surrounding pixels need to be taken into account during the composite. The linear quality setting (AssumeLinear) compromises by providing better quality than the default quality at a slightly lower speed. == Return Value == * Type:CompositingQuality DrawingQuality * This property returns the drawing quality when rendering on the GeoCanvas. == Remarks == * The DrawingQuality specifies if BaseLineShapes, BasePointShapes, and BaseAreaShapes use anti-alias methods or other techniques that control the quality. In some cases you may want a higher quality rendering and in other cases higher speed is more desirable. It is up to the implementer of the derived GeoCanvas class to control exactly what this setting means. == Return Value == * Type:DrawingQuality 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.WinformsMap#MapFocusMode//
Return Value

AccessibilityObject

  • N/A
Remarks
Return Value
  • Type:String

AccessibleDescription

  • N/A
Remarks
Return Value
  • Type:String

AccessibleRole

  • N/A
Remarks
Return Value
  • Type:Boolean

Anchor

  • N/A
Remarks
Return Value
  • Type:Boolean

AutoScrollOffset

  • N/A
Remarks
Return Value
  • Type:LayoutEngine

BackColor

  • N/A
Remarks
Return Value
  • Type:Image

BackgroundImageLayout

  • N/A
Remarks
Return Value
  • Type:BindingContext

Bottom

  • N/A
Remarks
Return Value
  • Type:Rectangle

CanFocus

  • N/A
Remarks
Return Value
  • Type:Boolean

Capture

  • N/A
Remarks
Return Value
  • Type:Boolean

ClientRectangle

  • N/A
Remarks
Return Value
  • Type:Size

CompanyName

  • N/A
Remarks
Return Value
  • Type:Boolean

ContextMenu

  • N/A
Remarks
Return Value
  • Type:ContextMenuStrip

Controls

  • N/A
Remarks
Return Value
  • Type:Boolean

Cursor

  • N/A
Remarks
Return Value
  • Type:ControlBindingsCollection

DisplayRectangle

  • N/A
Remarks
Return Value
  • Type:Boolean

Disposing

  • N/A
Remarks
Return Value
  • Type:DockStyle

Enabled

  • N/A
Remarks
Return Value
  • Type:Boolean

Font

  • N/A
Remarks
Return Value
  • Type:Color

Handle

  • N/A
Remarks
Return Value
  • Type:Boolean

Height

  • N/A
Remarks
Return Value
  • Type:Boolean

InvokeRequired

  • N/A
Remarks
Return Value
  • Type:Boolean

IsMirrored

  • N/A
Remarks
Return Value
  • Type:Int32

Location

  • N/A
Remarks
Return Value
  • Type:Padding

MaximumSize

  • N/A
Remarks
Return Value
  • Type:Size

Name

  • N/A
Remarks
Return Value
  • Type:Control

ProductName

  • N/A
Remarks
Return Value
  • Type:String

RecreatingHandle

  • N/A
Remarks
Return Value
  • Type:Region

Right

  • N/A
Remarks
Return Value
  • Type:RightToLeft

Site

  • N/A
Remarks
Return Value
  • Type:Size

TabIndex

  • N/A
Remarks
Return Value
  • Type:Boolean

Tag

  • N/A
Remarks
Return Value
  • Type:String

Top

  • N/A
Remarks
Return Value
  • Type:Control

UseWaitCursor

  • N/A
Remarks
Return Value
  • Type:Boolean

Width

  • N/A
Remarks
Return Value
  • Type:IWindowTarget

PreferredSize

  • N/A
Remarks
Return Value
  • Type:Padding

ImeMode

  • N/A
Remarks
Return Value
  • Type:IContainer

Protected Properties

BackColorBrush

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr

BecomingActiveControl

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

BindingContextInternal

  • N/A
Remarks
  • N/A
Return Value
  • Type:BindingContext

CanAccessProperties

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

CanRaiseEvents

  • N/A
Remarks
Return Value
  • Type:CreateParams

ValidationCancelled

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

IsTopMdiWindowClosing

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

CreateThreadId

  • N/A
Remarks
  • N/A
Return Value
  • Type:Int32

DefaultCursor

  • N/A
Remarks
Return Value
  • Type:Padding

DefaultMaximumSize

  • N/A
Remarks
Return Value
  • Type:Size

DefaultPadding

  • N/A
Remarks
Return Value
  • Type:Size

DisabledColor

  • N/A
Remarks
  • N/A
Return Value
  • Type:Color

DoubleBuffered

  • N/A
Remarks
Return Value
  • Type:Int32

HandleInternal

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr

HasMenu

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

HostedInWin32DialogManager

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

IsLayoutSuspended

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

IsWindowObscured

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

InternalHandle

  • N/A
Remarks
  • N/A
Return Value
  • Type:IntPtr

IsActiveX

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

IsContainerControl

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

IsIEParent

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

IsMnemonicsListenerAxSourced

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

ParentInternal

  • N/A
Remarks
  • N/A
Return Value
  • Type:Control

Properties

  • N/A
Remarks
  • N/A
Return Value
  • Type:PropertyStore

RawBackColor

  • N/A
Remarks
  • N/A
Return Value
  • Type:Color

RenderRightToLeft

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

RenderTransparent

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

RenderTransparencyWithVisualStyles

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

RequiredScaling

  • N/A
Remarks
  • N/A
Return Value
  • Type:BoundsSpecified

RequiredScalingEnabled

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

ResizeRedraw

  • N/A
Remarks
Return Value
  • Type:Boolean

TabStopInternal

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

TopLevelControlInternal

  • N/A
Remarks
  • N/A
Return Value
  • Type:Control

TopMostParent

  • N/A
Remarks
  • N/A
Return Value
  • Type:Control

ShowKeyboardCues

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

ShowFocusCues

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

ShowParams

  • N/A
Remarks
  • N/A
Return Value
  • Type:Int32

UseCompatibleTextRenderingInt

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

SupportsUseCompatibleTextRendering

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

WindowStyle

  • N/A
Remarks
  • N/A
Return Value
  • Type:Int32

WindowText

  • N/A
Remarks
  • N/A
Return Value
  • Type:String

ParentContainerControl

  • N/A
Remarks
  • N/A
Return Value
  • Type:ContainerControl

ShouldAutoValidate

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean

CachedImeMode

  • N/A
Remarks
  • N/A
Return Value
  • Type:ImeMode

CanEnableIme

  • N/A
Remarks
Return Value
  • Type:ImeMode

DisableImeModeChangedCount

  • N/A
Remarks
  • N/A
Return Value
  • Type:Int32

ImeModeBase

  • N/A
Remarks
Return Value
  • Type:EventHandlerList

DesignMode

  • N/A
Remarks

Event Arguments:MapClickWinformsMapEventArgs

OverlaysDrawing

  • This event will be fired before all overlays are drawn.
Remarks

Event Arguments:OverlaysDrawnWinformsMapEventArgs

OverlayDrawing

  • This event will be fired before an overlay is drawn.
Remarks

Event Arguments:OverlayDrawnWinformsMapEventArgs

CurrentExtentChanging

  • This event will be raised before the CurrentExtent of the Map changes.
Remarks

Event Arguments:CurrentExtentChangedWinformsMapEventArgs

CurrentScaleChanged

  • This event will be raised after the CurrentScale of the Map changes.
Remarks

Event Arguments:CurrentScaleChangingWinformsMapEventArgs

AutoSizeChanged

  • N/A
Remarks

Event Arguments:

BackgroundImageChanged

  • N/A
Remarks

Event Arguments:

BindingContextChanged

  • N/A
Remarks

Event Arguments:

ClientSizeChanged

  • N/A
Remarks

Event Arguments:

ContextMenuStripChanged

  • N/A
Remarks

Event Arguments:

DockChanged

  • N/A
Remarks

Event Arguments:

FontChanged

  • N/A
Remarks

Event Arguments:

LocationChanged

  • N/A
Remarks

Event Arguments:

RegionChanged

  • N/A
Remarks

Event Arguments:

SizeChanged

  • N/A
Remarks

Event Arguments:

TabStopChanged

  • N/A
Remarks

Event Arguments:

VisibleChanged

  • N/A
Remarks

Event Arguments:

ControlAdded

  • N/A
Remarks

Event Arguments:

DragDrop

  • N/A
Remarks

Event Arguments:

DragOver

  • N/A
Remarks

Event Arguments:

GiveFeedback

  • N/A
Remarks

Event Arguments:

HandleDestroyed

  • N/A
Remarks

Event Arguments:

Invalidated

  • N/A
Remarks

Event Arguments:

Paint

  • N/A
Remarks

Event Arguments:

QueryAccessibilityHelp

  • N/A
Remarks

Event Arguments:

Enter

  • N/A
Remarks

Event Arguments:

KeyDown

  • N/A
Remarks

Event Arguments:

KeyUp

  • N/A
Remarks

Event Arguments:

Leave

  • N/A
Remarks

Event Arguments:

MouseClick

  • N/A
Remarks

Event Arguments:

MouseCaptureChanged

  • N/A
Remarks

Event Arguments:

MouseEnter

  • N/A
Remarks

Event Arguments:

MouseHover

  • N/A
Remarks

Event Arguments:

MouseUp

  • N/A
Remarks

Event Arguments:

Move

  • N/A
Remarks

Event Arguments:

Resize

  • N/A
Remarks

Event Arguments:

StyleChanged

  • N/A
Remarks

Event Arguments:

Validating

  • N/A
Remarks

Event Arguments:

ParentChanged

  • N/A
Remarks

Event Arguments:

Disposed

  • N/A
Remarks
thinkgeo.mapsuite.desktopedition.winformsmap.txt · Last modified: 2017/03/16 21:59 (external edit)