====== ThinkGeo.MapSuite.Styles.IconValueStyle ====== ===== Inheritance Hierarchy ===== *System.Object *ThinkGeo.MapSuite.Styles.Style *ThinkGeo.MapSuite.Styles.PositionStyle ***ThinkGeo.MapSuite.Styles.IconValueStyle** ===== Members Summary ===== ==== Public Constructors ==== ** {{wiki:PublicMethod.gif|}} IconValueStyle() ** * //This is the constructor for the class.// == Remarks == * //If you use this constructor, then you need to set the required properties manually.// == Parameters ==
** {{wiki:PublicMethod.gif|}} IconValueStyle(String) ** * //This is the constructor for the class.// == Remarks == * //None// == Parameters == * //columnName// * Type:String * Description:This parameter is the column name you want to match on.
** {{wiki:PublicMethod.gif|}} IconValueStyle(String,IEnumerable) ** * //This is the constructor for the class.// == Remarks == * //None// == Parameters == * //columnName// * Type:String * Description:This parameter is the column name you want to match on. * //iconValueItems// * Type:IEnumerable<[[ThinkGeo.MapSuite.Styles.IconValueItem|IconValueItem]]> * Description:This parameter is the icon value items you want to match on.
==== Protected Constructors ==== ==== Public Methods ==== ** {{wiki:PublicMethod.gif|}} CloneDeep() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Styles.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.Shapes.Feature|Feature]]> * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Styles.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Styles.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.Shapes.BaseShape|BaseShape]]> * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Styles.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Styles.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.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A * //drawingExtent// * Type:[[ThinkGeo.MapSuite.Shapes.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.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A
** {{wiki:PublicMethod.gif|}} SaveStyle(String) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //filePathName// * Type:String * Description:N/A
** {{wiki:PublicMethod.gif|}} SaveStyle(Stream) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //stream// * Type:Stream * 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|}} DrawCore(IEnumerable,GeoCanvas,Collection,Collection) ** * //N/A// == 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.Shapes.Feature|Feature]]> * Description:This parameter represents the features you want to draw on the canvas. * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:This parameter represents the canvas you want to draw the features on. * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Styles.SimpleCandidate|SimpleCandidate]]> * Description:The labels will be drawn in the current layer only. * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Styles.SimpleCandidate|SimpleCandidate]]> * Description:The labels will be drawn in all layers.
** {{wiki:ProtectedMethod.gif|}} GetRequiredColumnNamesCore() ** * //N/A// == Remarks == * //This abstract method is called from the concrete public method GetRequiredFieldNames. In this method, we return the column names that are required for the style to draw the feature properly. For example, if you have a style that colors areas blue when a certain column value is over 100, then you need to be sure you include that column name. This will ensure that the column data is returned to you in the feature when it is ready to draw. 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:Collection * Description:This method returns a collection of the column names that it needs. == Parameters ==
** {{wiki:ProtectedMethod.gif|}} GetLabelingCandidateCore(Feature,GeoCanvas) ** * //N/A// == Remarks == * //This overridden method is called from the concrete public method Draw. In this method, we take the feature you passed in and determine if it is a candidate for labeling. If it is, then we will add it to the return collection. The algorithm to determine whether the label will draw is complex and determined by a number of properties and factors.// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Styles.LabelingCandidate|LabelingCandidate]]> * Description:N/A == Parameters == * //feature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:This parameter is the feature that will be considered as a labeling candidate. * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:This parameter is the canvas that will be used to draw the feature. This method will not draw on this canvas, but rather will use it to determine font size, etc.
** {{wiki:ProtectedMethod.gif|}} DrawMask(LabelingCandidate,GeoCanvas,Collection,Collection) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //labelingCandidate// * Type:[[ThinkGeo.MapSuite.Styles.LabelingCandidate|LabelingCandidate]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Styles.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Styles.SimpleCandidate|SimpleCandidate]]> * Description:N/A
** {{wiki:ProtectedMethod.gif|}} FilterFeatures(IEnumerable,GeoCanvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]> * Description:N/A == Parameters == * //features// * Type:IEnumerable<[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]> * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} FilterFeaturesCore(IEnumerable,GeoCanvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]> * Description:N/A == Parameters == * //features// * Type:IEnumerable<[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]> * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AbbreviateText(Feature,GeoCanvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //feature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} AbbreviateTextCore(Feature,GeoCanvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //feature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetLabelingCandidates(Feature,GeoCanvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Styles.LabelingCandidate|LabelingCandidate]]> * Description:N/A == Parameters == * //feature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.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.Styles.LabelingCandidate|LabelingCandidate]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Styles.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Styles.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.Styles.LabelingCandidate|LabelingCandidate]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Styles.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Styles.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.Styles.LabelingCandidate|LabelingCandidate]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Styles.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Styles.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.Styles.LabelingCandidate|LabelingCandidate]] * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A * //labelsInThisLayer// * Type:Collection<[[ThinkGeo.MapSuite.Styles.SimpleCandidate|SimpleCandidate]]> * Description:N/A * //labelsInAllLayers// * Type:Collection<[[ThinkGeo.MapSuite.Styles.SimpleCandidate|SimpleCandidate]]> * Description:N/A
** {{wiki:ProtectedMethod.gif|}} GetLabelingCandidateForOnePolygon(PolygonShape,String,GeoCanvas) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Styles.LabelingCandidate|LabelingCandidate]] * Description:N/A == Parameters == * //polygon// * Type:[[ThinkGeo.MapSuite.Shapes.PolygonShape|PolygonShape]] * Description:N/A * //text// * Type:String * Description:N/A * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A
** {{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.Shapes.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.Shapes.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.Styles.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.Styles.FormattedPositionStyleEventArgs|FormattedPositionStyleEventArgs]] * Description:N/A
** {{wiki:ProtectedMethod.gif|}} CloneDeepCore() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Styles.Style|Style]] * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} DrawSampleCore(GeoCanvas,DrawingRectangleF) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //canvas// * Type:[[ThinkGeo.MapSuite.Drawing.GeoCanvas|GeoCanvas]] * Description:N/A * //drawingExtent// * Type:[[ThinkGeo.MapSuite.Shapes.DrawingRectangleF|DrawingRectangleF]] * Description:N/A
** {{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|}} ColumnName ** * //N/A// == Remarks == * //This column name will be used to draw the text on the icon (if necessary) and to also match the value in the IconStyleItem.// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} IconValueItems ** * //N/A// == Remarks == * //You should create your IconValueItems and place them in this collection for consideration.// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Styles.IconValueItem|IconValueItem]]> ** {{wiki:PublicProperty.gif|}} PolygonLabelingLocationMode ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Styles.PolygonLabelingLocationMode|PolygonLabelingLocationMode]] ** {{wiki:PublicProperty.gif|}} MaxNudgingInPixel ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:PublicProperty.gif|}} NudgingIntervalInPixel ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} BestPlacementSymbolWidth ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} BestPlacementSymbolHeight ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:PublicProperty.gif|}} AbbreviationDictionary ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Dictionary ** {{wiki:PublicProperty.gif|}} LeaderLineStyle ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Styles.LineStyle|LineStyle]] ** {{wiki:PublicProperty.gif|}} LeaderLineRule ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Styles.LabelLeaderLinesRule|LabelLeaderLinesRule]] ** {{wiki:PublicProperty.gif|}} LeaderLineMinimumLengthInPixels ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{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.Styles.LabelDuplicateRule|LabelDuplicateRule]] ** {{wiki:PublicProperty.gif|}} OverlappingRule ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Styles.LabelOverlappingRule|LabelOverlappingRule]] ** {{wiki:PublicProperty.gif|}} AllowLineCarriage ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} SuppressPartialLabels ** * //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.Styles.PointPlacement|PointPlacement]] ** {{wiki:PublicProperty.gif|}} IsDefault ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:PublicProperty.gif|}} MaskType ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Styles.MaskType|MaskType]] ** {{wiki:PublicProperty.gif|}} Name ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:PublicProperty.gif|}} StyleClass ** * //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|}} LabelPositions ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Dictionary ** {{wiki:ProtectedProperty.gif|}} XOffsetInPixel ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:ProtectedProperty.gif|}} YOffsetInPixel ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Single ** {{wiki:ProtectedProperty.gif|}} CustomTextStyles ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Styles.TextStyle|TextStyle]]> ** {{wiki:ProtectedProperty.gif|}} RotationAngle ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Double ** {{wiki:ProtectedProperty.gif|}} FittingLineInScreen ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} FittingPolygonInScreen ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} TextFormat ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:ProtectedProperty.gif|}} NumericFormat ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:ProtectedProperty.gif|}} DateFormat ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:ProtectedProperty.gif|}} TextSolidBrush ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Drawing.GeoSolidBrush|GeoSolidBrush]] ** {{wiki:ProtectedProperty.gif|}} Font ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Drawing.GeoFont|GeoFont]] ** {{wiki:ProtectedProperty.gif|}} HaloPen ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Drawing.GeoPen|GeoPen]] ** {{wiki:ProtectedProperty.gif|}} TextColumnName ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String ** {{wiki:ProtectedProperty.gif|}} Mask ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Styles.AreaStyle|AreaStyle]] ** {{wiki:ProtectedProperty.gif|}} MaskMargin ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 ** {{wiki:ProtectedProperty.gif|}} Advanced ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Styles.TextStyleAdvanced|TextStyleAdvanced]] ** {{wiki:ProtectedProperty.gif|}} AllowSpline ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} ForceHorizontalLabelForLine ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean ** {{wiki:ProtectedProperty.gif|}} SplineType ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Styles.SplineType|SplineType]] ** {{wiki:ProtectedProperty.gif|}} DrawingLevel ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:[[ThinkGeo.MapSuite.Drawing.DrawingLevel|DrawingLevel]] ** {{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.Styles.FormattingPositionStyleEventArgs|FormattingPositionStyleEventArgs]] ** {{wiki:PublicEvent.gif|}} Formatted ** * //N/A// == Remarks == * //N/A// Event Arguments:[[ThinkGeo.MapSuite.Styles.FormattedPositionStyleEventArgs|FormattedPositionStyleEventArgs]]