ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
ThinkGeo Cloud
ThinkGeo UI Controls
ThinkGeo Open Source
Help and Support
External Resources
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.
ZoomToScale(Double,ScreenPointF)
ZoomToScale(Double,Single,Single)
ZoomIntoCenter(Int32,PointShape)
ZoomIntoCenter(Int32,Single,Single)
ZoomIntoCenter(Int32,ScreenPointF)
ZoomOutToCenter(Int32,Feature)
ZoomOutToCenter(Int32,PointShape)
ZoomOutToCenter(Int32,Single,Single)
DrawToBitmap(Bitmap,Rectangle)
SetBounds(Int32,Int32,Int32,Int32,BoundsSpecified)
OnMapClick(MapClickWinformsMapEventArgs)
OnOverlaysDrawing(OverlaysDrawingWinformsMapEventArgs)
OnOverlaysDrawn(OverlaysDrawnWinformsMapEventArgs)
OnOverlayDrawing(OverlayDrawingWinformsMapEventArgs)
OnOverlayDrawn(OverlayDrawnWinformsMapEventArgs)
OnCurrentScaleChanged(CurrentScaleChangedWinformsMapEventArgs)
OnCurrentExtentChanged(CurrentExtentChangedWinformsMapEventArgs)
OnCurrentScaleChanging(CurrentScaleChangingWinformsMapEventArgs)
OnCurrentExtentChanging(CurrentExtentChangingWinformsMapEventArgs)
ValidateActiveControl(Boolean&)
AccessibilityNotifyClients(AccessibleEvents,Int32,Int32)
RaiseMouseEvent(Object,MouseEventArgs)
InvokePaint(Control,PaintEventArgs)
InvokePaintBackground(Control,PaintEventArgs)
OnContextMenuChanged(EventArgs)
PaintBackground(PaintEventArgs,Rectangle,Color)
PaintBackground(PaintEventArgs,Rectangle,Color,Point)
PaintTransparentBackground(PaintEventArgs,Rectangle)
PaintTransparentBackground(PaintEventArgs,Rectangle,Region)
PerformLayout(LayoutEventArgs)
PrintToMetaFileRecursive(HandleRef,IntPtr,Rectangle)
RaisePaintEvent(Object,PaintEventArgs)
ScaleChildControls(SizeF,SizeF,Control)
ScaleControl(SizeF,SizeF,Control)
ScaleControl(SizeF,BoundsSpecified)
SelectNextControlInternal(Control,Boolean,Boolean,Boolean,Boolean)
SendMessage(Int32,Int32,Int32)
SendMessage(Int32,Int32&,Int32&)
SendMessage(Int32,Int32,IntPtr)
SendMessage(Int32,IntPtr,IntPtr)
SendMessage(Int32,IntPtr,Int32)
SendMessage(Int32,Int32,RECT&)
SendMessage(Int32,Boolean,Int32)
SendMessage(Int32,Int32,String)
SetBoundsCore(Int32,Int32,Int32,Int32,BoundsSpecified)
SetClientSizeCore(Int32,Int32)
SetStyle(ControlStyles,Boolean)
UpdateBounds(Int32,Int32,Int32,Int32,Int32,Int32)
WindowAssignHandle(IntPtr,Boolean)
InvokeMember(String,BindingFlags,Binder,Object[],ParameterModifier[],CultureInfo,String[])
RaceSetServerIdentity(ServerIdentity)
* N/A
== Remarks ==
* N/A
== Return Value ==
* Type:ServerIdentity
* Description:N/A
== Parameters ==
* id
* Type:ServerIdentity
* Description:N/A
AdornmentOverlay
* This property gets or sets the adornment overlay in the MapControl.
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#AdornmentOverlay//
GeoCanvas
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#GeoCanvas//
ExtentOverlay
* This property gets or sets the extent overlay in the MapControl.
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ExtentOverlay//
MapUnit
* This property gets or sets the map unit used by the MapControl.
== Remarks ==
* The MapUnit reflects the data unit.
== Return Value ==
* Type:GeographyUnit
ZoomLevelSnapping
* This property gets or sets the ZoomLevelSnappingMode in the MapControl.
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ZoomLevelSnapping//
ZoomLevelSet
* This property gets or sets the ZoomLevelSet used for the MapControl.
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ZoomLevelSet//
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//
AccessibleDefaultActionDescription
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#AccessibleDefaultActionDescription//
AccessibleName
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#AccessibleName//
AllowDrop
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#AllowDrop//
AutoSize
* 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//
LayoutEngine
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#LayoutEngine//
BackgroundImage
* 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//
BindingContext
* 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//
Bounds
* 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//
CanSelect
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#CanSelect//
CausesValidation
* 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//
ClientSize
* 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//
ContainsFocus
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ContainsFocus//
ContextMenuStrip
* 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//
Created
* 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//
DataBindings
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#DataBindings//
IsDisposed
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#IsDisposed//
Dock
* 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//
Focused
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Focused//
ForeColor
* 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//
HasChildren
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#HasChildren//
IsHandleCreated
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#IsHandleCreated//
IsAccessible
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#IsAccessible//
Left
* 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//
Margin
* 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//
MinimumSize
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#MinimumSize//
Parent
* 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//
ProductVersion
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ProductVersion//
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.2C_Boolean.29//
RightToLeft
* 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//
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//
TabStop
* 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//
Text
* 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//
TopLevelControl
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#TopLevelControl//
Visible
* 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//
WindowTarget
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#WindowTarget//
Padding
* 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//
Container
* 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//
CaptureInternal
* N/A
== Remarks ==
* N/A
== Return Value ==
* Type:Boolean
CacheTextInternal
* N/A
== Remarks ==
* N/A
== Return Value ==
* Type:Boolean
CreateParams
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#CreateParams//
DefaultMargin
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#DefaultMargin//
DefaultMinimumSize
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#DefaultMinimumSize//
DefaultSize
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#DefaultSize//
FontHandle
* N/A
== Remarks ==
* N/A
== Return Value ==
* Type:IntPtr
FontHeight
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#FontHeight//
ScaleChildren
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#ScaleChildren//
CurrentImeContextMode
* N/A
== Remarks ==
* N/A
== Return Value ==
* Type:ImeMode
DefaultImeMode
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#DefaultImeMode//
ImeWmCharsToIgnore
* N/A
== Remarks ==
* N/A
== Return Value ==
* Type:Int32
CanRaiseEventsInternal
* N/A
== Remarks ==
* N/A
== Return Value ==
* Type:Boolean
Events
* N/A
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#Public_Events//
MapClick
* This event will be fired when you click on the Map.
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnMapClick.28MapClickWinformsMapEventArgs.29//Event Arguments:MapClickWinformsMapEventArgs
OverlaysDrawn
* This event will be fired after all overlays are drawn.
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnOverlaysDrawn.28OverlaysDrawnWinformsMapEventArgs.29//Event Arguments:OverlaysDrawnWinformsMapEventArgs
OverlayDrawn
* This event will be fired after an overlay is drawn.
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnOverlayDrawn.28OverlayDrawnWinformsMapEventArgs.29//Event Arguments:OverlayDrawnWinformsMapEventArgs
CurrentExtentChanged
* This event will be raised after the CurrentExtent of the Map changes.
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnCurrentExtentChanged.28CurrentExtentChangedWinformsMapEventArgs.29//Event Arguments:CurrentExtentChangedWinformsMapEventArgs
CurrentScaleChanging
* This event will be raised before the CurrentScale of the Map changes.
== Remarks ==
* For the most updated Info for this topic, please check it here:http://wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.DesktopEdition.WinformsMap#OnCurrentScaleChanging.28CurrentScaleChangingWinformsMapEventArgs.29//Event Arguments:CurrentScaleChangingWinformsMapEventArgs
BackColorChanged
* 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//Event Arguments:
BackgroundImageLayoutChanged
* 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//Event Arguments:
CausesValidationChanged
* 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//Event Arguments:
ContextMenuChanged
* 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//Event Arguments:
CursorChanged
* 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//Event Arguments:
EnabledChanged
* 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//Event Arguments:
ForeColorChanged
* 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//Event Arguments:
MarginChanged
* 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//Event Arguments:
RightToLeftChanged
* 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//Event Arguments:
TabIndexChanged
* 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//Event Arguments:
TextChanged
* 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//Event Arguments:
Click
* 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//Event Arguments:
ControlRemoved
* 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//Event Arguments:
DragEnter
* 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//Event Arguments:
DragLeave
* 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//Event Arguments:
HandleCreated
* 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//Event Arguments:
HelpRequested
* 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//Event Arguments:
PaddingChanged
* 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//Event Arguments:
QueryContinueDrag
* 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//Event Arguments:
DoubleClick
* 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//Event Arguments:
GotFocus
* 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//Event Arguments:
KeyPress
* 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//Event Arguments:
Layout
* 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//Event Arguments:
LostFocus
* 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//Event Arguments:
MouseDoubleClick
* 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//Event Arguments:
MouseDown
* 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//Event Arguments:
MouseLeave
* 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//Event Arguments:
MouseMove
* 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//Event Arguments:
MouseWheel
* 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//Event Arguments:
PreviewKeyDown
* 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//Event Arguments:
ChangeUICues
* 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//Event Arguments:
SystemColorsChanged
* 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//Event Arguments:
Validated
* 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//Event Arguments:
ImeModeChanged
* 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//Event Arguments: