User Tools

Site Tools


thinkgeo.mapsuite.core.valueitem

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
thinkgeo.mapsuite.core.valueitem [2015/09/21 01:11]
admin
— (current)
Line 1: Line 1:
-====== ThinkGeo.MapSuite.Core.ValueItem ====== 
-This class represents a single value to match and styles to draw. 
-===== Inheritance Hierarchy ===== 
-  *System.Object 
-    ***ThinkGeo.MapSuite.Core.ValueItem** 
-===== Members Summary ===== 
-==== Public Constructors ==== 
-** {{wiki:​PublicMethod.gif|}} ValueItem() ** 
- 
-This is a constructor for the class. 
-== Remarks == 
-If you use this constructor,​ you should set the necessary properties manually. 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ValueItem(String,​AreaStyle) ** 
- 
-This is a constructor for the class. 
-== Remarks == 
-It is recommended that you do not use this constructor unless it is absolutely necessary. Instead, you can set the properties directly on the DefaultAreaStyle. 
-== Parameters == 
-  * //value// 
-    * Type:String 
-    * Description:​This parameter is the value that will match with the data specified for the feature. 
- 
-  * //​areaStyle//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.AreaStyle|AreaStyle]] 
-    * Description:​This parameter is the style you want to draw with if the value matches. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ValueItem(String,​LineStyle) ** 
- 
-This is a constructor for the class. 
-== Remarks == 
-It is recommended that you do not use this constructor unless it is absolutely necessary. Instead, you can set the properties directly on the DefaultLineStyle. 
-== Parameters == 
-  * //value// 
-    * Type:String 
-    * Description:​This parameter is the value that will match with the data specified for the feature. 
- 
-  * //​lineStyle//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.LineStyle|LineStyle]] 
-    * Description:​This parameter is the style you want to draw with if the value matches. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ValueItem(String,​PointStyle) ** 
- 
-This is a constructor for the class. 
-== Remarks == 
-It is recommended that you do not use this constructor unless it is absolutely necessary. Instead, you can set the properties directly on the DefaultPointStyle. 
-== Parameters == 
-  * //value// 
-    * Type:String 
-    * Description:​This parameter is the value that will match with the data specified for the feature. 
- 
-  * //​pointStyle//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.PointStyle|PointStyle]] 
-    * Description:​This parameter is the style you want to draw with if the value matches. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ValueItem(String,​TextStyle) ** 
- 
-This is a constructor for the class. 
-== Remarks == 
-It is recommended that you do not use this constructor unless it is absolutely necessary. Instead, you can set the properties directly on the DefaultTextStyle. 
-== Parameters == 
-  * //value// 
-    * Type:String 
-    * Description:​This parameter is the value that will match with the data specified for the feature. 
- 
-  * //​textStyle//​ 
-    * Type:​[[ThinkGeo.MapSuite.Core.TextStyle|TextStyle]] 
-    * Description:​This parameter is the style you want to draw with if the value matches. 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} ValueItem(String,​Collection<​Style>​) ** 
- 
-This is a constructor for the class. 
-== Remarks == 
-N/A 
-== Parameters == 
-  * //value// 
-    * Type:String 
-    * Description:​This parameter is the value that will match with the data specified for the feature. 
- 
-  * //​customStyles//​ 
-    * Type:​Collection<​[[ThinkGeo.MapSuite.Core.Style|Style]]>​ 
-    * Description:​This parameter represents the styles you want to draw with if the value matches. 
- 
-<div newline></​div>​ 
-==== Protected Constructors ==== 
-==== Public Methods ==== 
-** {{wiki:​PublicMethod.gif|}} ToString() ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:String 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} Equals(Object) ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:​Boolean 
-  * Description:​N/​A 
- 
-== Parameters == 
-  * //obj// 
-    * Type:Object 
-    * Description:​N/​A 
- 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetHashCode() ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:Int32 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​PublicMethod.gif|}} GetType() ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:Type 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-==== Protected Methods ==== 
-** {{wiki:​ProtectedMethod.gif|}} Finalize() ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:Void 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-** {{wiki:​ProtectedMethod.gif|}} MemberwiseClone() ** 
- 
-N/A 
-== Remarks == 
-N/A 
- 
-== Return Value == 
-  * Type:Object 
-  * Description:​N/​A 
- 
-== Parameters == 
-<div newline></​div>​ 
-==== Public Properties ==== 
-** {{wiki:​PublicProperty.gif|}} Value ** 
- 
-This property gets and sets the value that we use to match with the feature data. If the value matches, we use the style for this item. 
-== Remarks == 
-The value must match exactly. If more complex matching is required, we suggest you use the RegexStyle. The RegexStyle enables you to use regular expressions,​ which are very powerful for fuzzy matching. 
-== Return Value == 
-  * Type:String 
- 
-** {{wiki:​PublicProperty.gif|}} DefaultAreaStyle ** 
- 
-This property gets and sets the default AreaStyle. You should use this style if your features are area-based. 
-== Remarks == 
-The default style allows you to directly set properties on the styles without having to create a new style each time. You can start simply by setting properties like color, etc. This makes modifying styles very easy. 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.AreaStyle|AreaStyle]] 
- 
-** {{wiki:​PublicProperty.gif|}} DefaultLineStyle ** 
- 
-This property gets and sets the default LineStyle. You should use this style if your features are line-based. 
-== Remarks == 
-The default style allows you to directly set properties on the styles without having to create a new style each time. You can start simply by setting properties like color, etc. This makes modifying styles very easy. 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.LineStyle|LineStyle]] 
- 
-** {{wiki:​PublicProperty.gif|}} DefaultPointStyle ** 
- 
-This property gets and sets the default PointStyle. You should use this style if your features are point-based. 
-== Remarks == 
-The default style allows you to directly set properties on the styles without having to create a new style each time. You can start simply by setting properties like color, etc. This makes modifying styles very easy. 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.PointStyle|PointStyle]] 
- 
-** {{wiki:​PublicProperty.gif|}} DefaultTextStyle ** 
- 
-This property gets and sets the default TextStyle. You should use this style if your features are text-based (such as labels). 
-== Remarks == 
-The default style allows you to directly set properties on the styles without having to create a new style each time. You can start simply by setting properties like color, etc. This makes modifying styles very easy. 
-== Return Value == 
-  * Type:​[[ThinkGeo.MapSuite.Core.TextStyle|TextStyle]] 
- 
-** {{wiki:​PublicProperty.gif|}} CustomStyles ** 
- 
-This property gets the collection of custom styles. 
-== Remarks == 
-The custom styles allow you to use styles other than the default style properties of the class. In this way, you can use a DotDensityStyle or any other style in the API. 
-== Return Value == 
-  * Type:​Collection<​[[ThinkGeo.MapSuite.Core.Style|Style]]>​ 
- 
-==== Protected Properties ==== 
-==== Public Events ==== 
  
thinkgeo.mapsuite.core.valueitem.1442797917.txt.gz ยท Last modified: 2015/09/21 01:11 by admin