User Tools

Site Tools


thinkgeo.mapsuite.webedition.classbreakmarkerstyle

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
thinkgeo.mapsuite.webedition.classbreakmarkerstyle [2015/08/20 03:08]
127.0.0.1 external edit
thinkgeo.mapsuite.webedition.classbreakmarkerstyle [2017/03/16 21:59] (current)
Line 1: Line 1:
 ====== ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle ====== ====== ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle ======
  
 +{{section>​upgrade_map_suite_to_10.0}}
  
- 
-<!-- Class --> 
 This class represents a style based on class break values. This class represents a style based on class break values.
-=== Remarks === 
-The &​lt;​strong&​gt;​ClassBreakMarkerStyle&​lt;/​strong&​gt;​ allows you to change the appearance of markers based on their data values. It is often useful for you to display markers differently based on ranges of numeric values. For example, you may have a city ShapeFile that has the populations of each city as part of its data. You may then want to mark cities differently based on their population. The ClassBreakMarkerStyle allows you to do this.How marker class breaks work:You add a number of MarkerClassBreak objects to the ClassBreaks collection. The numeric values of the breaks are important and you must place the breaks in numerical order. For example, break 0 must be added before break 100. In each ClassBreak, you specify the marker styles that will be applied to markers. Also, in the ClassBreakMarkerStyle.ColumnName property, you specify the name of the column where we will find the data used to compare the breaks. The column needs to be a numeric type.When we proceed to draw the style, we look through the ClassBreaks and select the ClassBreak that is where the features column data is greater than and closest to the break value.Example:​Feature Value = 42ClassBreak1.Value = 0ClassBreak2.Value = 20ClassBreak3.Value = 40ClassBreak4.Value = 60In this case, the break closest to the feature value without exceeding it is ClassBreak3(40). If the feature value had been less than zero, nothing would have been drawn. If the feature value were 1000, then ClassBreak4 would draw.If you wanted to represent a value that is less than zero, you could do that as shown in the sample below.Feature Value = -1ClassBreak1.Value = Double.MinClassBreak2.Value = 0ClassBreak3.Value = 20ClassBreak4.Value = 40In this example, the first marker class break would be used.Your features should be point-based,​ such as a cities. 
 ===== Inheritance Hierarchy ===== ===== Inheritance Hierarchy =====
-*System.Object +  ​*System.Object 
-**[[ThinkGeo.MapSuite.WebEdition.MarkerStyle]] +    *ThinkGeo.MapSuite.WebEdition.MarkerStyle 
-***[[ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle]]+      ***ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle**
 ===== Members Summary ===== ===== Members Summary =====
 ==== Public Constructors ==== ==== Public Constructors ====
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^ +** {{wiki:​PublicMethod.gif|}} ClassBreakMarkerStyle() ​**
-{{wiki:​PublicMethod.gif|Public Method}}[[#ClassBreakMarkerStyle()|ClassBreakMarkerStyle]] ​  ​| ​   |    | Initialize a new instance of the ClassBreakMarkerStyle class. ​  | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​ClassBreakMarkerStyle(String)|ClassBreakMarkerStyle]] ​  | String ​  ​| ​   | Initialize a new instance of the ClassBreakMarkerStyle class with the columnName specified. ​  | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​ClassBreakMarkerStyle(String,​ BreakValueInclusion)|ClassBreakMarkerStyle]] ​  | String, [[ThinkGeo.MapSuite.Core.BreakValueInclusion|BreakValueInclusion]] ​  ​| ​   | Initialize a new instance of the ClassBreakMarkerStyle class with the columnName and breakValueInclusion specified. ​  | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​ClassBreakMarkerStyle(String,​ BreakValueInclusion,​ Collection<​MarkerClassBreak>​)|ClassBreakMarkerStyle]] ​  | String, [[ThinkGeo.MapSuite.Core.BreakValueInclusion|BreakValueInclusion]],​ Collection<​[[ThinkGeo.MapSuite.WebEdition.MarkerClassBreak|MarkerClassBreak]]> ​  ​| ​   | Initialize a new instance of the ClassBreakMarkerStyle class with the columnName and breakValueInclusion specified. ​  |+
  
-==== Protected Constructors ​==== +  * //​Initialize a new instance of the ClassBreakMarkerStyle class.// 
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^+== Remarks ​== 
 +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ClassBreakMarkerStyle.28.29//​ 
 +== Parameters ​== 
 +<div newline></​div>​ 
 +** {{wiki:​PublicMethod.gif|}} ClassBreakMarkerStyle(String) **
  
 +  * //​Initialize a new instance of the ClassBreakMarkerStyle class with the columnName specified.//​
 +== Remarks ==
 +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ClassBreakMarkerStyle.28String.29//​
 +== Parameters ==
 +  * //​columnName//​
 +    * Type:String
 +    * Description:​The column name in the feature whose value is used to compare and select the break.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} ClassBreakMarkerStyle(String,​BreakValueInclusion) **
 +
 +  * //​Initialize a new instance of the ClassBreakMarkerStyle class with the columnName and breakValueInclusion specified.//​
 +== Remarks ==
 +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ClassBreakMarkerStyle.28String.2C_BreakValueInclusion.29//​
 +== Parameters ==
 +  * //​columnName//​
 +    * Type:String
 +    * Description:​The column name in the feature whose value is used to compare and select the break.
 +
 +  * //​breakValueInclusion//​
 +    * Type:​[[ThinkGeo.MapSuite.Core.BreakValueInclusion|BreakValueInclusion]]
 +    * Description:​A value that indicates whether or not to include the break value when comparing the break.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} ClassBreakMarkerStyle(String,​BreakValueInclusion,​Collection<​MarkerClassBreak>​) **
 +
 +  * //​Initialize a new instance of the ClassBreakMarkerStyle class with the columnName and breakValueInclusion specified.//​
 +== Remarks ==
 +  * //For the most updated Info for this topic, please check it here://
 +== Parameters ==
 +  * //​columnName//​
 +    * Type:String
 +    * Description:​The column name in the feature whose value is used to compare and select the break.
 +
 +  * //​breakValueInclusion//​
 +    * Type:​[[ThinkGeo.MapSuite.Core.BreakValueInclusion|BreakValueInclusion]]
 +    * Description:​A value that indicates whether or not to include the break value when comparing the break.
 +
 +  * //​classBreaks//​
 +    * Type:​Collection<​[[ThinkGeo.MapSuite.WebEdition.MarkerClassBreak|MarkerClassBreak]]>​
 +    * Description:​A collection of class breaks whose values are compared with the column value to determine which classbreak styles are applied to the markers.
 +
 +<div newline></​div>​
 +==== Protected Constructors ====
 ==== Public Methods ==== ==== Public Methods ====
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^ +** {{wiki:​PublicMethod.gif|}} GetMarkers(IEnumerable<​Feature>​) ​**
-{{wiki:​PublicMethod.gif|Public Method}}[[#​Equals(Object)|Equals]] ​  | Object ​  | Object ​  ​| ​   | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​GetHashCode()|GetHashCode]] ​  ​| ​   | Object ​  ​| ​   | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#GetMarkers(IEnumerable<​Feature>​)|GetMarkers]] ​  | IEnumerable<​[[ThinkGeo.MapSuite.Core.Feature|Feature]]> ​  | [[ThinkGeo.MapSuite.WebEdition.MarkerStyle|MarkerStyle]](overriden) ​  | Returns a collection of markers that are created by the styles defined on the classbreaks. ​  | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​GetRequiredColumnNames()|GetRequiredColumnNames]] ​  ​| ​   | [[ThinkGeo.MapSuite.WebEdition.MarkerStyle|MarkerStyle]] ​  ​| ​   | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​GetType()|GetType]] ​  ​| ​   | Object ​  ​| ​   | +
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​ToString()|ToString]] ​  ​| ​   | Object ​  ​| ​   |+
  
-==== Protected Methods ==== +  ​* //​Returns ​a collection of markers ​that are created by the styles defined on the classbreaks.// 
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^ +== Remarks == 
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#​Finalize()|Finalize]] ​  ​| ​   | Object ​  ​| ​   | +  * //For the most updated Info for this topic, please check it here://
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#​GetContextMenusCore()|GetContextMenusCore]] ​  ​| ​   | [[ThinkGeo.MapSuite.WebEdition.MarkerStyle|MarkerStyle]](overriden) ​  ​| Gets a collection of context menus that are associated with the MarkerStyle  | +
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#​GetRequiredColumnNamesCore()|GetRequiredColumnNamesCore]] ​  ​| ​   | [[ThinkGeo.MapSuite.WebEdition.MarkerStyle|MarkerStyle]] ​  ​| ​   | +
-| {{wiki:ProtectedMethod.gif|Protected Method}}[[#​MemberwiseClone()|MemberwiseClone]] ​  ​| ​   | Object ​  ​| ​   |+
  
-==== Public Properties ==== +== Return Value == 
-^ Name ^ Return ^ DeclaringType ^ Summary ^ +  * Type:​Collection<​[[ThinkGeo.MapSuite.WebEdition.Marker|Marker]]> 
-| {{wiki:PublicProperty.gif|Public Property}}[[#​BreakValueInclusion|BreakValueInclusion]] ​  | [[ThinkGeo.MapSuite.Core.BreakValueInclusion|BreakValueInclusion]] ​  ​| ​   | Gets or sets the value that indicates whether or not to include the break value when comparing the break. ​  | +  * Description:N/A
-| {{wiki:​PublicProperty.gif|Public Property}}[[#​ClassBreaks|ClassBreaks]] ​  ​| ​Collection<​[[ThinkGeo.MapSuite.WebEdition.MarkerClassBreak|MarkerClassBreak]]> ​  |    | Gets a collection of class breaks whose values are compared with the column value to determine which ClassBreakStyles are applied to the markers. ​  | +
-| {{wiki:PublicProperty.gif|Public Property}}[[#​ColumnName|ColumnName]] ​  | String ​  ​| ​   | Gets or sets a column name whose value is used to compare and select the break. ​  | +
-| {{wiki:​PublicProperty.gif|Public Property}}[[#​IsActive|IsActive]] ​  | Boolean ​  | [[ThinkGeo.MapSuite.WebEdition.MarkerStyle|MarkerStyle]] ​  ​| ​   | +
-| {{wiki:​PublicProperty.gif|Public Property}}[[#​RequiredColumnNames|RequiredColumnNames]] ​  | Collection<​String> ​  | [[ThinkGeo.MapSuite.WebEdition.MarkerStyle|MarkerStyle]] ​  ​| ​   |+
  
-==== Protected Properties ==== +== Parameters ​== 
-^ Name ^ Return ^ DeclaringType ^ Summary ^+  * //​features//​ 
 +    * Type:​IEnumerable<​[[ThinkGeo.MapSuite.Core.Feature|Feature]]>​ 
 +    * Description:​A collection of features that the markers are created from.
  
-==== Public Events ==== +<div newline></​div>​ 
-^ Name ^ Event Arguments ^ DeclaringType ^ Summary ^+** {{wiki:​PublicMethod.gif|}} GetRequiredColumnNames() **
  
-===== Public Constructors ===== +  * //N/A// 
-==== ClassBreakMarkerStyle() ==== +== Remarks == 
-Initialize a new instance of the ClassBreakMarkerStyle class. +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetRequiredColumnNames.28.29//
-=== Overloads === +
-Initialize a new instance of the ClassBreakMarkerStyle class. +
-=== Remarks ​=== +
-For the most updated Info for this topic, please check it here:<a href="http://wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ClassBreakMarkerStyle.28.29" target="​_blank">​http:​//wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ClassBreakMarkerStyle.28.29</​a>​ +
-=== Parameters === +
-^  Name ^  Type ^  Description ^+
  
-[[#Public Constructors|Go Back]] +== Return Value == 
-==== ClassBreakMarkerStyle(String) ​==== +  * Type:Collection<String
-Initialize a new instance of the ClassBreakMarkerStyle class with the columnName specified. +  ​Description:N/A
-=== Overloads === +
-Initialize a new instance of the ClassBreakMarkerStyle class. +
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ClassBreakMarkerStyle.28String.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ClassBreakMarkerStyle.28String.29</​a+
-=== Parameters === +
-^  Name ^  Type ^  ​Description ​+
-| columnName ​  | String<​!-- System.String --> ​  | The column name in the feature whose value is used to compare and select the break. ​  |+
  
-[[#Public Constructors|Go Back]] +== Parameters ​== 
-==== ClassBreakMarkerStyle(String,​ BreakValueInclusion) ​==== +<div newline></div
-Initialize a new instance of the ClassBreakMarkerStyle class with the columnName and breakValueInclusion specified. +** {{wiki:​PublicMethod.gif|}} ToString() **
-=== Overloads === +
-Initialize a new instance of the ClassBreakMarkerStyle class. +
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ClassBreakMarkerStyle.28String.2C_BreakValueInclusion.29"​ target="​_blank"​>http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ClassBreakMarkerStyle.28String.2C_BreakValueInclusion.29</a+
-=== Parameters === +
-^  Name ^  Type ^  Description ^ +
-| columnName ​  | String<​!-- System.String --> ​  | The column name in the feature whose value is used to compare and select the break. ​  | +
-| breakValueInclusion ​  | [[ThinkGeo.MapSuite.Core.BreakValueInclusion|BreakValueInclusion]]<​!-- ThinkGeo.MapSuite.Core.BreakValueInclusion --> ​  | A value that indicates whether or not to include the break value when comparing the break. ​  |+
  
-[[#Public Constructors|Go Back]] +  * //N/A// 
-==== ClassBreakMarkerStyle(String,​ BreakValueInclusion,​ Collection<​MarkerClassBreak>​) ==== +== Remarks == 
-Initialize a new instance of the ClassBreakMarkerStyle class with the columnName and breakValueInclusion specified. +  * //For the most updated Info for this topic, please check it here:http:wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ToString.28.29//
-=== Overloads === +
-Initialize a new instance of the ClassBreakMarkerStyle class. +
-=== Remarks ​=== +
-For the most updated Info for this topic, please check it here:<a href=""​ target="​_blank"></​a>​ +
-=== Parameters === +
-^  Name ^  Type ^  Description ^ +
-| columnName ​  | String<​!-- System.String --> ​  | The column name in the feature whose value is used to compare and select the break  | +
-| breakValueInclusion ​  | [[ThinkGeo.MapSuite.Core.BreakValueInclusion|BreakValueInclusion]]<​!-- ThinkGeo.MapSuite.Core.BreakValueInclusion --> ​  | A value that indicates whether or not to include the break value when comparing the break. ​  | +
-| classBreaks ​  | Collection<​[[ThinkGeo.MapSuite.WebEdition.MarkerClassBreak|MarkerClassBreak]]><​!-- System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.WebEdition.MarkerClassBreak} --> ​  | A collection of class breaks whose values are compared with the column value to determine which classbreak styles are applied to the markers. ​  |+
  
-[[#Public Constructors|Go Back]] +== Return Value == 
-===== Protected Constructors ===== +  ​* ​Type:String 
-===== Public Methods ===== +  * Description:N/A
-==== Equals(Object) ==== +
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​Equals.28Object.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​Equals.28Object.29</​a>​ +
-=== Return Value === +
-^ Return ​Type Description ​+
-| Boolean<​!-- System.Boolean --> ​  ​| ​   |+
  
-=== Parameters ​=== +== Parameters == 
-^  Name ^  Type ^  Description ^ +<div newline></​div>​ 
-obj   ​| ​Object<!-- System.Object --> ​  ​| ​   |+** {{wiki:​PublicMethod.gif|}} Equals(Object) **
  
-<!-- System.Object --> +  * //N/A// 
-[[#Public Methods|Go Back]] +== Remarks == 
-==== GetHashCode() ==== +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​Equals.28Object.29//
-=== Remarks ​=== +
-For the most updated Info for this topic, please check it here:<a href="http://wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetHashCode.28.29" target="​_blank">​http:​//wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetHashCode.28.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Int32<​!-- System.Int32 --> ​  ​| ​   |+
  
-=== Parameters === +== Return Value == 
-^  Name ^  ​Type ​ ​Description ​^+  ​Type:Boolean 
 +  Description:N/A
  
-<!-- System.Object --> +== Parameters ​== 
-[[#Public Methods|Go Back]] +  * //obj/
-==== GetMarkers(IEnumerable<​Feature>​) ​==== +    ​* ​Type:Object 
-Returns a collection of markers that are created by the styles defined on the classbreaks. +    ​* Description:​N/​A
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href=""​ target="​_blank"><​/a> +
-=== Return Value === +
-^ Return ​Type ^ Description ^ +
-| Collection<​[[ThinkGeo.MapSuite.WebEdition.Marker|Marker]]><​!-- System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.WebEdition.Marker} --> ​  ​| ​   |+
  
-=== Parameters === +<div newline></div> 
-^  Name ^  Type ^  Description ^ +** {{wiki:​PublicMethod.gif|}} GetHashCode() **
-| features ​  | IEnumerable<[[ThinkGeo.MapSuite.Core.Feature|Feature]]><!-- System.Collections.Generic.IEnumerable{ThinkGeo.MapSuite.Core.Feature--> ​  | A collection of features that the markers are created from.   |+
  
-<!-- ThinkGeo.MapSuite.WebEdition.MarkerStyle(overriden) --> +  * //N/A// 
-[[#Public Methods|Go Back]] +== Remarks == 
-==== GetRequiredColumnNames() ==== +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetHashCode.28.29//
-=== Remarks ​=== +
-For the most updated Info for this topic, please check it here:<a href="http://wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetRequiredColumnNames.28.29" target="​_blank">​http:​//wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetRequiredColumnNames.28.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Collection<​String><​!-- System.Collections.ObjectModel.Collection{System.String} --> ​  ​| ​   |+
  
-=== Parameters === +== Return Value == 
-^  Name ^  ​Type ​ ​Description ​^+  ​Type:Int32 
 +  Description:N/A
  
-<!-- ThinkGeo.MapSuite.WebEdition.MarkerStyle --> +== Parameters ​== 
-[[#Public Methods|Go Back]] +<div newline></div
-==== GetType() ​==== +** {{wiki:​PublicMethod.gif|}} GetType() **
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetType.28.29"​ target="​_blank"​>http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetType.28.29</a+
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Type<!-- System.Type --> ​  ​| ​   ​|+
  
-=== Parameters === +  * //N/A// 
-^  Name ^  Type ^  Description ^+== Remarks ​== 
 +  ​* //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetType.28.29//​
  
-<!-- System.Object --> +== Return Value == 
-[[#Public Methods|Go Back]] +  ​* ​Type:Type 
-==== ToString() ==== +  * Description:N/A
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ToString.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​ToString.28.29</​a>​ +
-=== Return Value === +
-^ Return ​Type Description ​+
-| String<​!-- System.String --> ​  ​| ​   |+
  
-=== Parameters === +== Parameters ​== 
-^  Name ^  Type ^  Description ^+<div newline></​div>​ 
 +==== Protected Methods ==== 
 +** {{wiki:​ProtectedMethod.gif|}} GetContextMenusCore() **
  
-<!-- System.Object --> +  * //Gets a collection of context menus that are associated with the MarkerStyle.// 
-[[#Public Methods|Go Back]] +== Remarks == 
-===== Protected Methods ===== +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetContextMenusCore.28.29//
-==== Finalize() ==== +
-=== Remarks ​=== +
-For the most updated Info for this topic, please check it here:<a href="http://wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​Finalize.28.29" target="​_blank">​http:​//wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​Finalize.28.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Void<!-- System.Void --> ​  ​| ​   |+
  
-=== Parameters === +== Return Value == 
-^  Name ^  ​Type ​ ​Description ​^+  ​Type:​[[ThinkGeo.MapSuite.WebEdition.GeoKeyedCollection<​T>​[[ThinkGeo.MapSuite.WebEdition.ContextMenu,​ WebEdition, Version=9.0.0.0,​ Culture=neutral,​ PublicKeyToken=null]]|GeoKeyedCollection<​T>​]] 
 +  Description:A collection of context menus that are associated with the MarkerStyle.
  
-<!-- System.Object --> +== Parameters ​== 
-[[#​Protected Methods|Go Back]] +<div newline></div
-==== GetContextMenusCore() ​==== +** {{wiki:​ProtectedMethod.gif|}} GetRequiredColumnNamesCore() **
-Gets a collection of context menus that are associated with the MarkerStyle. +
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetContextMenusCore.28.29"​ target="​_blank"​>http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetContextMenusCore.28.29</a+
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| [[ThinkGeo.MapSuite.WebEdition.GeoKeyedCollection|GeoKeyedCollection]]<​[[ThinkGeo.MapSuite.WebEdition.ContextMenu|ContextMenu]]><​!-- ThinkGeo.MapSuite.WebEdition.GeoKeyedCollection{ThinkGeo.MapSuite.WebEdition.ContextMenu--> ​  | A collection of context menus that are associated with the MarkerStyle. ​  |+
  
-=== Parameters === +  * //N/A// 
-^  Name ^  Type ^  Description ^+== Remarks ​== 
 +  ​* //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetRequiredColumnNamesCore.28.29//​
  
-<!-- ThinkGeo.MapSuite.WebEdition.MarkerStyle(overriden) --> +== Return Value == 
-[[#​Protected Methods|Go Back]] +  ​* ​Type:Collection<​String>​ 
-==== GetRequiredColumnNamesCore() ==== +  * Description:​N/​A
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetRequiredColumnNamesCore.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetRequiredColumnNamesCore.28.29</​a>​ +
-=== Return Value === +
-^ Return ​Type ^ Description ^ +
-Collection<​String>​<!-- System.Collections.ObjectModel.Collection{System.String} --> ​  ​| ​   |+
  
-=== Parameters ​=== +== Parameters == 
-^  Name ^  Type ^  Description ^+<div newline></​div>​ 
 +** {{wiki:​ProtectedMethod.gif|}} ZhQ=() **
  
-<!-- ThinkGeo.MapSuite.WebEdition.MarkerStyle --> +  * //N/A// 
-[[#​Protected Methods|Go Back]] +== Remarks == 
-==== MemberwiseClone() ==== +  ​* ​//N/A//
-=== Remarks ​=== +
-For the most updated Info for this topic, please check it here:<a href="​http:​//wiki.thinkgeo.com/wiki/ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​MemberwiseClone.28.29"​ target="​_blank">​http:​//​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​MemberwiseClone.28.29</​a>​ +
-=== Return Value === +
-^ Return Type ^ Description ^ +
-| Object<​!-- System.Object --> ​  ​| ​   |+
  
-=== Parameters === +== Return Value == 
-^  Name ^  ​Type ​ ​Description ​^+  ​Type:​[[ThinkGeo.MapSuite.WebEdition.GeoKeyedCollection<​T>​[[ThinkGeo.MapSuite.WebEdition.ContextMenu,​ WebEdition, Version=9.0.0.0,​ Culture=neutral,​ PublicKeyToken=null]]|GeoKeyedCollection<​T>​]] 
 +  Description:N/A
  
-<!-- System.Object --> +== Parameters ​== 
-[[#​Protected Methods|Go Back]] +<div newline></​div>​ 
-===== Public Properties ===== +** {{wiki:ProtectedMethod.gif|}} Finalize() **
-==== BreakValueInclusion ==== +
-Gets or sets the value that indicates whether or not to include the break value when comparing the break. +
-=== Remarks === +
-ExampleIf you have a class break value set to 100 and the break value is included, then 100 is included for this breakIf you set the value to excluded, then 100 would match with the break below 100 instead.Please see the ClassBreakStyle class remarks for a full description of how the ClassBreakStyle works. +
-=== Return Value === +
-^ Return Type ^ +
-| [[ThinkGeo.MapSuite.Core.BreakValueInclusion|BreakValueInclusion]]<​!-- ThinkGeo.MapSuite.Core.BreakValueInclusion --> ​  |+
  
-<​!-- ​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle ​--> +  * //N/A// 
-[[#Public Properties|Go Back]] +== Remarks == 
-==== ClassBreaks ​==== +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​Finalize.28.29//​ 
-Gets a collection of class breaks whose values are compared with the column value to determine which ClassBreakStyles are applied to the markers+ 
-=== Remarks ​=== +== Return Value == 
-The class breaks determine which style to use, based on the break values.Please see the ClassBreakStyle class remarks ​for a full description of how the ClassBreakStyle works+  * Type:Void 
-=== Return Value === +  * Description:​N/​A 
-^ Return ​Type ^ + 
-| Collection<[[ThinkGeo.MapSuite.WebEdition.MarkerClassBreak|MarkerClassBreak]]><!-- System.Collections.ObjectModel.Collection{ThinkGeo.MapSuite.WebEdition.MarkerClassBreak--> ​  |+== Parameters ​== 
 +<div newline></​div>​ 
 +** {{wiki:​ProtectedMethod.gif|}} MemberwiseClone() ** 
 + 
 +  * //N/A// 
 +== Remarks == 
 +  * //For the most updated Info for this topic, please check it here:​http:​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​MemberwiseClone.28.29//​ 
 + 
 +== Return Value == 
 +  ​* ​Type:Object 
 +  * Description:​N/​A 
 + 
 +== Parameters == 
 +<div newline></div> 
 +==== Public Properties ==== 
 +** {{wiki:​PublicProperty.gif|}} ColumnName **
  
-<!-- ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle --> 
-[[#Public Properties|Go Back]] 
-==== ColumnName ==== 
 Gets or sets a column name whose value is used to compare and select the break. Gets or sets a column name whose value is used to compare and select the break.
-=== Remarks ​===+== Remarks ==
 You use this property to set the name of the column where the numeric data is stored for your features. You use this property to set the name of the column where the numeric data is stored for your features.
-=== Return Value === +== Return Value == 
-^ Return ​Type +  ​* ​Type:String
-| String<​!-- System.String ​--> ​  |+
  
-<!-- ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle --> +** {{wiki:PublicProperty.gif|}} BreakValueInclusion **
-[[#Public Properties|Go Back]] +
-==== IsActive ==== +
-=== Remarks === +
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​IsActive"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​IsActive</​a>​ +
-=== Return Value === +
-^ Return Type ^ +
-| Boolean<​!-- System.Boolean --> ​  |+
  
-<!-- ThinkGeo.MapSuite.WebEdition.MarkerStyle --> +Gets or sets the value that indicates whether or not to include the break value when comparing the break
-[[#Public Properties|Go Back]] +== Remarks == 
-==== RequiredColumnNames ==== +Example: If you have a class break value set to 100 and the break value is included, then 100 is included ​for this break. If you set the value to excludedthen 100 would match with the break below 100 instead. Please see the ClassBreakStyle class remarks for full description of how the ClassBreakStyle works
-=== Remarks ​=== +== Return Value == 
-For the most updated Info for this topicplease check it here:<href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetRequiredColumnNames.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetRequiredColumnNames.28.29</​a>​ +  ​* ​Type:[[ThinkGeo.MapSuite.Core.BreakValueInclusion|BreakValueInclusion]]
-=== Return Value === +
-^ Return ​Type +
-| Collection<​String><​!-- System.Collections.ObjectModel.Collection{System.String} --> ​  |+
  
-<!-- ThinkGeo.MapSuite.WebEdition.MarkerStyle --> +** {{wiki:​PublicProperty.gif|}} ClassBreaks ** 
-[[#Public Properties|Go Back]] + 
-===== Protected Properties ===== +Gets a collection of class breaks whose values are compared with the column value to determine which ClassBreakStyles are applied to the markers. 
-===== Public Events ===== +== Remarks == 
-__NOTOC__ +The class breaks determine which style to use, based on the break values. Please see the ClassBreakStyle class remarks for a full description of how the ClassBreakStyle works. 
-[[Category:WebEdition]] +== Return Value == 
-[[Category:​ThinkGeo.MapSuite.WebEdition]] +  * Type:​Collection<[[ThinkGeo.MapSuite.WebEdition.MarkerClassBreak|MarkerClassBreak]]
-[[Category:UpdateDocumentation]]+ 
 +** {{wiki:​PublicProperty.gif|}} IsActive ** 
 + 
 +N/A 
 +== Remarks ​== 
 +For the most updated Info for this topic, please check it here:​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​IsActive 
 +== Return Value == 
 +  * Type:​Boolean 
 + 
 +** {{wiki:​PublicProperty.gif|}} RequiredColumnNames ** 
 + 
 +N/A 
 +== Remarks ​== 
 +For the most updated Info for this topic, please check it here:http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.ClassBreakMarkerStyle#​GetRequiredColumnNames.28.29 
 +== Return Value == 
 +  * Type:Collection<​String>​ 
 + 
 +==== Protected Properties ==== 
 +==== Public Events ====
  
thinkgeo.mapsuite.webedition.classbreakmarkerstyle.1440040135.txt.gz · Last modified: 2015/09/18 03:07 (external edit)