User Tools

Site Tools


thinkgeo.mapsuite.webedition.markervalueitem

Differences

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

Link to this comparison view

Next revision
Previous revision
thinkgeo.mapsuite.webedition.markervalueitem [2015/08/20 03:08]
127.0.0.1 external edit
— (current)
Line 1: Line 1:
-====== ThinkGeo.MapSuite.WebEdition.MarkerValueItem ====== 
- 
- 
- 
-<!-- Class --> 
-This class represents one value in a ValueMarkerStyle. 
-=== Remarks === 
-ValueMarkerStyle:​The ValueMarkerStyle allows you to match data in the FeatureSource with a value string. If the value matches, then we will use the style defined in that item to create the markers.For example, you may have some data about cities, with each city categorized as either a high, medium or low pollution city. Based on the string values of "​High",​ "​Medium"​ and "​Low",​ we can match on these. If a particular feature'​s data for the column matched "​High",​ then we would use the high MarkerValueItem'​s style to create that city's marker. 
-===== Inheritance Hierarchy ===== 
-*System.Object 
-**[[ThinkGeo.MapSuite.WebEdition.MarkerValueItem]] 
-===== Members Summary ===== 
-==== Public Constructors ==== 
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^ 
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​MarkerValueItem()|MarkerValueItem]] ​  ​| ​   |    | Initialize a new instance of the MarkerValueItem class. ​  | 
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​MarkerValueItem(String)|MarkerValueItem]] ​  | String ​  ​| ​   | Initialize a new instance of the MarkerValueItem class using the value string specified. ​  | 
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​MarkerValueItem(String,​ MarkerStyle)|MarkerValueItem]] ​  | String, [[ThinkGeo.MapSuite.WebEdition.MarkerStyle|MarkerStyle]] ​  ​| ​   | Initialize a new instance of the MarkerValueItem class with the value string and custom marker style specified. ​  | 
- 
-==== Protected Constructors ==== 
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^ 
- 
-==== Public Methods ==== 
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^ 
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​Equals(Object)|Equals]] ​  | Object ​  | Object ​  ​| ​   | 
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​GetHashCode()|GetHashCode]] ​  ​| ​   | Object ​  ​| ​   | 
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​GetType()|GetType]] ​  ​| ​   | Object ​  ​| ​   | 
-| {{wiki:​PublicMethod.gif|Public Method}}[[#​ToString()|ToString]] ​  ​| ​   | Object ​  ​| ​   | 
- 
-==== Protected Methods ==== 
-^ Name ^ Parameters ^ DeclaringType ^ Summary ^ 
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#​Finalize()|Finalize]] ​  ​| ​   | Object ​  ​| ​   | 
-| {{wiki:​ProtectedMethod.gif|Protected Method}}[[#​MemberwiseClone()|MemberwiseClone]] ​  ​| ​   | Object ​  ​| ​   | 
- 
-==== Public Properties ==== 
-^ Name ^ Return ^ DeclaringType ^ Summary ^ 
-| {{wiki:​PublicProperty.gif|Public Property}}[[#​CustomMarkerStyle|CustomMarkerStyle]] ​  | [[ThinkGeo.MapSuite.WebEdition.MarkerStyle|MarkerStyle]] ​  ​| ​   | Gets or sets the style that could be any type of MarkerStyle. ​  | 
-| {{wiki:​PublicProperty.gif|Public Property}}[[#​DefaultMarkerStyle|DefaultMarkerStyle]] ​  | [[ThinkGeo.MapSuite.WebEdition.PointMarkerStyle|PointMarkerStyle]] ​  ​| ​   | Gets or sets the marker style that will be applied to the markers if the CustomMarkerStyle is not defined. ​  | 
-| {{wiki:​PublicProperty.gif|Public Property}}[[#​Value|Value]] ​  | String ​  ​| ​   | Gets or sets the value that we will use to match with the feature data. If the value matches, we will use the style for this item.   | 
- 
-==== Protected Properties ==== 
-^ Name ^ Return ^ DeclaringType ^ Summary ^ 
- 
-==== Public Events ==== 
-^ Name ^ Event Arguments ^ DeclaringType ^ Summary ^ 
- 
-===== Public Constructors ===== 
-==== MarkerValueItem() ==== 
-Initialize a new instance of the MarkerValueItem class. 
-=== Overloads === 
-Initialize a new instance of the MarkerValueItem class. 
-=== Remarks === 
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​MarkerValueItem.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​MarkerValueItem.28.29</​a>​ 
-=== Parameters === 
-^  Name ^  Type ^  Description ^ 
- 
-[[#Public Constructors|Go Back]] 
-==== MarkerValueItem(String) ==== 
-Initialize a new instance of the MarkerValueItem class using the value string specified. 
-=== Overloads === 
-Initialize a new instance of the MarkerValueItem class. 
-=== Remarks === 
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​MarkerValueItem.28String.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​MarkerValueItem.28String.29</​a>​ 
-=== Parameters === 
-^  Name ^  Type ^  Description ^ 
-| value   | String<​!-- System.String --> ​  | The string to compare with the column value of features, which determines whether or not to use this value item to create the markers. ​  | 
- 
-[[#Public Constructors|Go Back]] 
-==== MarkerValueItem(String,​ MarkerStyle) ==== 
-Initialize a new instance of the MarkerValueItem class with the value string and custom marker style specified. 
-=== Overloads === 
-Initialize a new instance of the MarkerValueItem class. 
-=== Remarks === 
-It is recommended that you do not use this constructor if it is not necessary. Instead, you can set the properties directly on the DefaultMarkerStyle. 
-=== Parameters === 
-^  Name ^  Type ^  Description ^ 
-| value   | String<​!-- System.String --> ​  | The string to compare with the column value of features, which determines whether or not to use this value item to create the markers. ​  | 
-| customMarkerStyle ​  | [[ThinkGeo.MapSuite.WebEdition.MarkerStyle|MarkerStyle]]<​!-- ThinkGeo.MapSuite.WebEdition.MarkerStyle --> ​  | The marker style that is applied to the markers with higher priority. ​  | 
- 
-[[#Public Constructors|Go Back]] 
-===== Protected Constructors ===== 
-===== Public Methods ===== 
-==== 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.MarkerValueItem#​Equals.28Object.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​Equals.28Object.29</​a>​ 
-=== Return Value === 
-^ Return Type ^ Description ^ 
-| Boolean<​!-- System.Boolean --> ​  ​| ​   | 
- 
-=== Parameters === 
-^  Name ^  Type ^  Description ^ 
-| obj   | Object<​!-- System.Object --> ​  ​| ​   | 
- 
-<!-- System.Object --> 
-[[#Public Methods|Go Back]] 
-==== GetHashCode() ==== 
-=== Remarks === 
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​GetHashCode.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​GetHashCode.28.29</​a>​ 
-=== Return Value === 
-^ Return Type ^ Description ^ 
-| Int32<​!-- System.Int32 --> ​  ​| ​   | 
- 
-=== Parameters === 
-^  Name ^  Type ^  Description ^ 
- 
-<!-- System.Object --> 
-[[#Public Methods|Go Back]] 
-==== GetType() ==== 
-=== Remarks === 
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​GetType.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​GetType.28.29</​a>​ 
-=== Return Value === 
-^ Return Type ^ Description ^ 
-| Type<!-- System.Type --> ​  ​| ​   | 
- 
-=== Parameters === 
-^  Name ^  Type ^  Description ^ 
- 
-<!-- System.Object --> 
-[[#Public Methods|Go Back]] 
-==== ToString() ==== 
-=== Remarks === 
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​ToString.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​ToString.28.29</​a>​ 
-=== Return Value === 
-^ Return Type ^ Description ^ 
-| String<​!-- System.String --> ​  ​| ​   | 
- 
-=== Parameters === 
-^  Name ^  Type ^  Description ^ 
- 
-<!-- System.Object --> 
-[[#Public Methods|Go Back]] 
-===== Protected Methods ===== 
-==== Finalize() ==== 
-=== Remarks === 
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​Finalize.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​Finalize.28.29</​a>​ 
-=== Return Value === 
-^ Return Type ^ Description ^ 
-| Void<!-- System.Void --> ​  ​| ​   | 
- 
-=== Parameters === 
-^  Name ^  Type ^  Description ^ 
- 
-<!-- System.Object --> 
-[[#​Protected Methods|Go Back]] 
-==== MemberwiseClone() ==== 
-=== Remarks === 
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​MemberwiseClone.28.29"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​MemberwiseClone.28.29</​a>​ 
-=== Return Value === 
-^ Return Type ^ Description ^ 
-| Object<​!-- System.Object --> ​  ​| ​   | 
- 
-=== Parameters === 
-^  Name ^  Type ^  Description ^ 
- 
-<!-- System.Object --> 
-[[#​Protected Methods|Go Back]] 
-===== Public Properties ===== 
-==== CustomMarkerStyle ==== 
-Gets or sets the style that could be any type of MarkerStyle. 
-=== Remarks === 
-The &​lt;​strong&​gt;​CustomMarkerStyle&​lt;/​strong&​gt;​ could be any type of &​lt;​strong&​gt;​MarkerStyle&​lt;/​strong&​gt;​. This style has a higher priority than the &​lt;​strong&​gt;​DefaultMarkerStyle&​lt;/​strong&​gt;​. This means that if you defined both &​lt;​strong&​gt;​DefaultMarkerStyle&​lt;/​strong&​gt;​ and &​lt;​strong&​gt;​CustomMarkerStyle&​lt;/​strong&​gt;,​ the &​lt;​strong&​gt;​CustomMarkerStyle&​lt;/​strong&​gt;​ will be used. 
-=== Return Value === 
-^ Return Type ^ 
-| [[ThinkGeo.MapSuite.WebEdition.MarkerStyle|MarkerStyle]]<​!-- ThinkGeo.MapSuite.WebEdition.MarkerStyle --> ​  | 
- 
-<!-- ThinkGeo.MapSuite.WebEdition.MarkerValueItem --> 
-[[#Public Properties|Go Back]] 
-==== DefaultMarkerStyle ==== 
-Gets or sets the marker style that will be applied to the markers if the CustomMarkerStyle is not defined. 
-=== Remarks === 
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​DefaultMarkerStyle"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​DefaultMarkerStyle</​a>​ 
-=== Return Value === 
-^ Return Type ^ 
-| [[ThinkGeo.MapSuite.WebEdition.PointMarkerStyle|PointMarkerStyle]]<​!-- ThinkGeo.MapSuite.WebEdition.PointMarkerStyle --> ​  | 
- 
-<!-- ThinkGeo.MapSuite.WebEdition.MarkerValueItem --> 
-[[#Public Properties|Go Back]] 
-==== Value ==== 
-Gets or sets the value that we will use to match with the feature data. If the value matches, we will use the style for this item. 
-=== Remarks === 
-For the most updated Info for this topic, please check it here:<a href="​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​firstHeading&​quot;​ class=&​quot;​firstHeading&​quot;​ lang=&​quot;​en&​quot;&​gt;&​lt;​span dir=&​quot;​auto"​ target="​_blank">​http://​wiki.thinkgeo.com/​wiki/​ThinkGeo.MapSuite.WebEdition.MarkerValueItem#​firstHeading"​ class="​firstHeading"​ lang="​en"&​gt;&​lt;​span dir="​auto</​a>​ 
-=== Return Value === 
-^ Return Type ^ 
-| String<​!-- System.String --> ​  | 
- 
-<!-- ThinkGeo.MapSuite.WebEdition.MarkerValueItem --> 
-[[#Public Properties|Go Back]] 
-===== Protected Properties ===== 
-===== Public Events ===== 
-__NOTOC__ 
-[[Category:​WebEdition]] 
-[[Category:​ThinkGeo.MapSuite.WebEdition]] 
-[[Category:​UpdateDocumentation]] 
  
thinkgeo.mapsuite.webedition.markervalueitem.1440040135.txt.gz ยท Last modified: 2015/09/18 03:08 (external edit)