GM_UtilityDrawGridLines Method |
Draws grid lines (either lat/lon or in the view projection) for the
specified location.
Namespace:
GlobalMapper
Assembly:
GlobalMapperWrapperNET45 (in GlobalMapperWrapperNET45.dll) Version: 19.1.0.0 (19.1.0.0)
Syntax public static GM_Error_t32 DrawGridLines(
IntPtr aDC,
bool aLatLonGrid,
double aGridSpacing,
GM_Rectangle_t aWorldBounds,
int aLeftPixel,
int aTopPixel,
int aPixelWidth,
int aPixelHeight
)
Public Shared Function DrawGridLines (
aDC As IntPtr,
aLatLonGrid As Boolean,
aGridSpacing As Double,
aWorldBounds As GM_Rectangle_t,
aLeftPixel As Integer,
aTopPixel As Integer,
aPixelWidth As Integer,
aPixelHeight As Integer
) As GM_Error_t32
public:
static GM_Error_t32 DrawGridLines(
IntPtr aDC,
bool aLatLonGrid,
double aGridSpacing,
GM_Rectangle_t^ aWorldBounds,
int aLeftPixel,
int aTopPixel,
int aPixelWidth,
int aPixelHeight
)
Parameters
- aDC
- Type: SystemIntPtr
Device context to draw to - aLatLonGrid
- Type: SystemBoolean
Draw a lat/lon grid or a view projection grid - aGridSpacing
- Type: SystemDouble
Grid spacing (use 0.0 for default) - aWorldBounds
- Type: GlobalMapper.TypesGM_Rectangle_t
World bounds to draw or NULL for all - aLeftPixel
- Type: SystemInt32
Left pixel coordinate to draw to - aTopPixel
- Type: SystemInt32
Top pixel coordinate to draw to - aPixelWidth
- Type: SystemInt32
Width in pixels to draw - aPixelHeight
- Type: SystemInt32
Height in pixels to draw
Return Value
Type:
GM_Error_t32A GM Error Code
See Also