====== ThinkGeo.MapSuite.Core.IconStyle ====== {{section>upgrade_map_suite_to_10.0}} This class displays an icon with text from the data of the feature. ===== Inheritance Hierarchy ===== *System.Object *ThinkGeo.MapSuite.Core.Style *ThinkGeo.MapSuite.Core.PositionStyle *ThinkGeo.MapSuite.Core.TextStyle ***ThinkGeo.MapSuite.Core.IconStyle** ===== Members Summary ===== ==== Public Constructors ==== ** {{wiki:PublicMethod.gif|}} IconStyle() ** * //This is the constructor for the class.// == Remarks == * //If you use this, then you should set the properties manually -- such as the column name, font, solid brush and the image.// == Parameters ==
** {{wiki:PublicMethod.gif|}} IconStyle(String,String,GeoFont,GeoSolidBrush) ** * //This is the constructor for the class.// == Remarks == * //This constructor allows you to pass in the path to the icon, along with the column name, font and solid brush to use. This is the most commonly used constructor. If you need to use an image from a stream, then you should use the constructor that takes a GeoImage.// == Parameters == * //iconPathFilename// * Type:String * Description:This parameter is the path and filename of the icon you want to use. * //textColumnName// * Type:String * Description:This parameter is the column name from which to get the data for the text. * //textFont// * Type:[[ThinkGeo.MapSuite.Core.GeoFont|GeoFont]] * Description:This parameter is the font used to draw the text on the icon. * //textSolidBrush// * Type:[[ThinkGeo.MapSuite.Core.GeoSolidBrush|GeoSolidBrush]] * Description:This parameter is the solid brush that is used to draw the text on the icon.
** {{wiki:PublicMethod.gif|}} IconStyle(GeoImage,String,GeoFont,GeoSolidBrush) ** * //This is the constructor for the class.// == Remarks == * //This constructor allows you to use a GeoImage instead of specifying a path and filename of the icon. This is commonly used if the image comes from a stream.// == Parameters == * //iconImage// * Type:[[ThinkGeo.MapSuite.Core.GeoImage|GeoImage]] * Description:This parameter is the image to use in this style. * //textColumnName// * Type:String * Description:This parameter is the column name from which to get the data for the text. * //textFont// * Type:[[ThinkGeo.MapSuite.Core.GeoFont|GeoFont]] * Description:This parameter is the font used to draw the text on the icon. * //textSolidBrush// * Type:[[ThinkGeo.MapSuite.Core.GeoSolidBrush|GeoSolidBrush]] * Description:This parameter is the solid brush that is used to draw the text on the icon.
==== Protected Constructors ==== ==== Public Methods ==== ** {{wiki:PublicMethod.gif|}} CloneDeep() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.Style|Style]] * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Draw(IEnumerable,GeoCanvas,Collection,Collection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //features// * Type:IEnumerable<[[ThinkGeo.MapSuite.Core.Feature|Feature]]> * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A
** {{wiki:PublicMethod.gif|}} Draw(IEnumerable,GeoCanvas,Collection,Collection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //shapes// * Type:IEnumerable<[[ThinkGeo.MapSuite.Core.BaseShape|BaseShape]]> * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A
** {{wiki:PublicMethod.gif|}} GetRequiredColumnNames() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} DrawSample(GeoCanvas,DrawingRectangleF) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //drawingExtent// * Type:[[ThinkGeo.MapSuite.Core.DrawingRectangleF|DrawingRectangleF]] * Description:N/A
** {{wiki:PublicMethod.gif|}} DrawSample(GeoCanvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A
** {{wiki:PublicMethod.gif|}} ToString() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Equals(Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //obj// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} GetHashCode() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetType() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Type * Description:N/A == Parameters ==
==== Protected Methods ==== ** {{wiki:ProtectedMethod.gif|}} DrawSampleCore(GeoCanvas,DrawingRectangleF) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //drawingExtent// * Type:[[ThinkGeo.MapSuite.Core.DrawingRectangleF|DrawingRectangleF]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} DrawCore(IEnumerable,GeoCanvas,Collection,Collection) ** * //This method draws the features on the canvas you provided.// == Remarks == * //This overridden method is called from the concrete public method Draw. In this method, we take the features you passed in and draw them on the canvas you provided. Each style (based on its properties) may draw each feature differently. When overriding this method, consider each feature and its column data values. You can use the full power of the GeoCanvas to do the drawing. If you need column data for a feature, be sure to override the GetRequiredColumnNamesCore and add the columns you need to the collection. In many of the styles, we add properties to allow the user to specify which field they need; then, in the GetRequiredColumnNamesCore, we read that property and add it to the collection.// == Return Value == * Type:Void * Description:None == Parameters == * //features// * Type:IEnumerable<[[ThinkGeo.MapSuite.Core.Feature|Feature]]> * Description:This parameter represents the features you want to draw on the canvas. * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:This parameter represents the canvas you want to draw the features on. * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:The labels will be drawn in the current layer only. * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:The labels will be drawn in all layers.
** {{wiki:ProtectedMethod.gif|}} GetLabelingCandidateCore(Feature,GeoCanvas) ** * //This method determines which labels will be candidates for drawing.// == Remarks == * //This overridden method is called from the concrete public method GetLabelingCandidate. In this method, we determine if the feature passed in will be a candidate for drawing. If you have the grid method enabled, then we determine this by ensuring that only one label will be eligible per grid cell. In this way, we can ensure that labels always draw in the same place at the same scale.// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Core.LabelingCandidate|LabelingCandidate]]> * Description:This method returns a collection of labeling candidates. == Parameters == * //feature// * Type:[[ThinkGeo.MapSuite.Core.Feature|Feature]] * Description:This parameter represents the features you want to draw on the canvas. * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:This parameter represents the canvas you want to draw the features on.
** {{wiki:ProtectedMethod.gif|}} Format(String,BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters == * //text// * Type:String * Description:N/A * //labeledShape// * Type:[[ThinkGeo.MapSuite.Core.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} FormatCore(String,BaseShape) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters == * //text// * Type:String * Description:N/A * //labeledShape// * Type:[[ThinkGeo.MapSuite.Core.BaseShape|BaseShape]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnFormatting(FormattingPositionStyleEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.Core.FormattingPositionStyleEventArgs|FormattingPositionStyleEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} OnFormatted(FormattedPositionStyleEventArgs) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //e// * Type:[[ThinkGeo.MapSuite.Core.FormattedPositionStyleEventArgs|FormattedPositionStyleEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetRequiredColumnNamesCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} FilterFeatures(IEnumerable,GeoCanvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Core.Feature|Feature]]> * Description:N/A == Parameters == * //features// * Type:IEnumerable<[[ThinkGeo.MapSuite.Core.Feature|Feature]]> * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} FilterFeaturesCore(IEnumerable,GeoCanvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Core.Feature|Feature]]> * Description:N/A == Parameters == * //features// * Type:IEnumerable<[[ThinkGeo.MapSuite.Core.Feature|Feature]]> * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetLabelingCandidates(Feature,GeoCanvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Core.LabelingCandidate|LabelingCandidate]]> * Description:N/A == Parameters == * //feature// * Type:[[ThinkGeo.MapSuite.Core.Feature|Feature]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CheckDuplicate(LabelingCandidate,GeoCanvas,Collection,Collection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //labelingCandidate// * Type:[[ThinkGeo.MapSuite.Core.LabelingCandidate|LabelingCandidate]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CheckDuplicateCore(LabelingCandidate,GeoCanvas,Collection,Collection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //labelingCandidate// * Type:[[ThinkGeo.MapSuite.Core.LabelingCandidate|LabelingCandidate]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CheckOverlapping(LabelingCandidate,GeoCanvas,Collection,Collection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //labelingCandidate// * Type:[[ThinkGeo.MapSuite.Core.LabelingCandidate|LabelingCandidate]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CheckOverlappingCore(LabelingCandidate,GeoCanvas,Collection,Collection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //labelingCandidate// * Type:[[ThinkGeo.MapSuite.Core.LabelingCandidate|LabelingCandidate]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Core.SimpleCandidate|SimpleCandidate]]> * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetLabelingCandidateForOnePolygon(PolygonShape,String,GeoCanvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.LabelingCandidate|LabelingCandidate]] * Description:N/A == Parameters == * //polygon// * Type:[[ThinkGeo.MapSuite.Core.PolygonShape|PolygonShape]] * Description:N/A * //text// * Type:String * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Core.GeoCanvas|GeoCanvas]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CloneDeepCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.Style|Style]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} Finalize() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters ==
==== Public Properties ==== ** {{wiki:PublicProperty.gif|}} IconFilePathName ** * //This property gets and sets the filename and path for the image you want to use in the style.// == Remarks == * //You can also optionally use the IconImage property if the image you want to use is derived from a stream.// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} IconImage ** * //This property gets and sets the GeoImage you want to use for the image.// == Remarks == * //You will typically want to use this property if your image is derived from a stream. Otherwise, you can use the IconFilePathName property to specify where the icon is located and we will handle the rest.// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeoImage|GeoImage]] ** {{wiki:PublicProperty.gif|}} IconImageScale ** * //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 == * Type:Double ** {{wiki:PublicProperty.gif|}} SuppressPartialLabels ** * //This property gets and sets whether a partial label in the current extent will be drawn or not.// == Remarks == * //This property provides a solution to the "cut off" label issue in Map Suite Web Edition and Desktop Edition, which occurs when multiple tiles exist. When you set this property to true, any labels outside of the current extent will not be drawn.// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} XOffsetInPixel ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} YOffsetInPixel ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} FittingLineInScreen ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} FittingPolygonInScreen ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} CustomTextStyles ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Core.TextStyle|TextStyle]]> ** {{wiki:PublicProperty.gif|}} RotationAngle ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} TextFormat ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} NumericFormat ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} DateFormat ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} TextSolidBrush ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeoSolidBrush|GeoSolidBrush]] ** {{wiki:PublicProperty.gif|}} Font ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeoFont|GeoFont]] ** {{wiki:PublicProperty.gif|}} HaloPen ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.GeoPen|GeoPen]] ** {{wiki:PublicProperty.gif|}} TextColumnName ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} Mask ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.AreaStyle|AreaStyle]] ** {{wiki:PublicProperty.gif|}} MaskMargin ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} Advanced ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.TextStyleAdvanced|TextStyleAdvanced]] ** {{wiki:PublicProperty.gif|}} ForceHorizontalLabelForLine ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} SplineType ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.SplineType|SplineType]] ** {{wiki:PublicProperty.gif|}} DrawingLevel ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.DrawingLevel|DrawingLevel]] ** {{wiki:PublicProperty.gif|}} LabelPositions ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Dictionary ** {{wiki:PublicProperty.gif|}} PolygonLabelingLocationMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.PolygonLabelingLocationMode|PolygonLabelingLocationMode]] ** {{wiki:PublicProperty.gif|}} GridSize ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} DuplicateRule ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.LabelDuplicateRule|LabelDuplicateRule]] ** {{wiki:PublicProperty.gif|}} OverlappingRule ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.LabelOverlappingRule|LabelOverlappingRule]] ** {{wiki:PublicProperty.gif|}} AllowLineCarriage ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} ForceLineCarriage ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} FittingPolygon ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} LabelAllPolygonParts ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} LabelAllLineParts ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} FittingPolygonFactor ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} TextLineSegmentRatio ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double ** {{wiki:PublicProperty.gif|}} BestPlacement ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} PointPlacement ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.PointPlacement|PointPlacement]] ** {{wiki:PublicProperty.gif|}} MaskType ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Core.MaskType|MaskType]] ** {{wiki:PublicProperty.gif|}} Name ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} IsActive ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} RequiredColumnNames ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection ** {{wiki:PublicProperty.gif|}} Filters ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection ==== Protected Properties ==== ** {{wiki:ProtectedProperty.gif|}} IsStyleDefault ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} AllowSpline ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} IsDefault ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} FiltersCore ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection ==== Public Events ==== ** {{wiki:PublicEvent.gif|}} Formatting ** * //N/A// == Remarks == * //N/A// Event Arguments:[[ThinkGeo.MapSuite.Core.FormattingPositionStyleEventArgs|FormattingPositionStyleEventArgs]] ** {{wiki:PublicEvent.gif|}} Formatted ** * //N/A// == Remarks == * //N/A// Event Arguments:[[ThinkGeo.MapSuite.Core.FormattedPositionStyleEventArgs|FormattedPositionStyleEventArgs]]