Table of Contents

ThinkGeo.MapSuite.Core.PointStyle

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.

This class allows you to define how points are drawn on the canvas.

Inheritance Hierarchy

Members Summary

Public Constructors

PointStyle()

Remarks
Parameters

PointStyle(GeoImage)

Remarks
Parameters

PointStyle(GeoFont,Int32,GeoSolidBrush)

Remarks
Parameters

PointStyle(PointSymbolType,GeoSolidBrush,Int32)

Remarks
Parameters

PointStyle(PointSymbolType,GeoSolidBrush,GeoPen,Int32)

Remarks
Parameters

Protected Constructors

Public Methods

CloneDeep()

Remarks
Return Value
Parameters

Draw(IEnumerable<Feature>,GeoCanvas,Collection<SimpleCandidate>,Collection<SimpleCandidate>)

Remarks
Return Value
Parameters

Draw(IEnumerable<BaseShape>,GeoCanvas,Collection<SimpleCandidate>,Collection<SimpleCandidate>)

Remarks
Return Value
Parameters

GetRequiredColumnNames()

Remarks
Return Value
Parameters

DrawSample(GeoCanvas,DrawingRectangleF)

Remarks
Return Value
Parameters

DrawSample(GeoCanvas)

Remarks
Return Value
Parameters

SaveStyle(String)

Remarks
Return Value
Parameters

SaveStyle(Stream)

Remarks
Return Value
Parameters

ToString()

Remarks
Return Value
Parameters

Equals(Object)

Remarks
Return Value
Parameters

GetHashCode()

Remarks
Return Value
Parameters

GetType()

Remarks
Return Value
Parameters

Protected Methods

DrawCore(IEnumerable<Feature>,GeoCanvas,Collection<SimpleCandidate>,Collection<SimpleCandidate>)

Remarks
Return Value
Parameters

DrawSampleCore(GeoCanvas,DrawingRectangleF)

Remarks
Return Value
Parameters

CloneDeepCore()

Remarks
Return Value
Parameters

GetRequiredColumnNamesCore()

Remarks
Return Value
Parameters

Finalize()

Remarks
Return Value
Parameters

MemberwiseClone()

Remarks
Return Value
Parameters

Public Properties

PointType

This property gets and sets the type of point you want to draw.

Remarks

When using the PointStyle you choose between a bitmap, a font or a predefined symbol to represent the point. Each of these options has corresponding properties on the point symbol. If you set the type to character, then you need to set the properties that start with “Character,” such as “CharacterFont.” The same is true for the symbol.

Return Value

Image

This property gets and sets the image used if the PointType property is Bitmap.

Remarks

This property is where you can set the image for the points if the PointType is Bitmap. It uses a GeoImage, so you can either reference a file or supply a stream.

Return Value

ImageScale

This property gets and sets the scale of the image you want to draw.

Remarks

This property allows you to scale the image up and down depending on how large or small you want it. It can be changed dynamically, so you could change it at every scale level to resize the bitmap based on the current scale. A scale of 1 would be the original size, while a scale of 2 would double the size. A scale of .5 would reduce the size of the image by half, and so on.

Return Value

CharacterFont

This property gets and sets the font that is used for the character if the PointType is Character.

Remarks

This property allows you to set the font from which to select a character index if you choose the Character PointType.

Return Value

CharacterIndex

This property gets and sets the index position of the character you want to use from the font you selected in the CharacterFont property.

Remarks

You need to specify the index position of the character you want to use from the font you selected. For example, if you choose 1, then we will use the first character in the font you set in the CharacterFont property.

Return Value

CharacterSolidBrush

This property gets and sets the SolidBrush used to color the font character for the point.

Remarks

This brush is used to draw the character. It is only used if the PointType is Character. If you need a brush other than the SolidBrush, you should look in the advanced property of the class.

Return Value

SymbolType

This property gets and sets the type of symbol you want to use if the PointType is Symbol.

Remarks

You can choose between a number of predefined symbols. The symbols are simple geometric objects that are typically used for abstract representations on a map. If there is a specific symbol you need that is not part of our symbol collection, you can submit it to us and we will consider adding it.

Return Value

Mask

N/A

Remarks

N/A

Return Value

Advanced

N/A

Remarks

N/A

Return Value

DrawingLevel

N/A

Remarks

N/A

Return Value

SymbolSolidBrush

N/A

Remarks

N/A

Return Value

SymbolPen

N/A

Remarks

N/A

Return Value

SymbolSize

N/A

Remarks

N/A

Return Value

RotationAngle

N/A

Remarks

N/A

Return Value

XOffsetInPixel

N/A

Remarks

N/A

Return Value

YOffsetInPixel

N/A

Remarks

N/A

Return Value

CustomPointStyles

N/A

Remarks

N/A

Return Value

Name

N/A

Remarks

N/A

Return Value

IsActive

N/A

Remarks

N/A

Return Value

RequiredColumnNames

N/A

Remarks

N/A

Return Value

Filters

N/A

Remarks

N/A

Return Value

Protected Properties

IsDefault

N/A

Remarks

N/A

Return Value

FiltersCore

N/A

Remarks

N/A

Return Value

Public Events