Skip to content

ValueItem

Inheritance Hierarchy

  • Object
  • ValueItem

Members Summary

Public Constructors Summary

Name
ValueItem()
ValueItem(String,AreaStyle)
ValueItem(String,LineStyle)
ValueItem(String,PointStyle)
ValueItem(String,TextStyle)
ValueItem(String,Collection<Style>)

Protected Constructors Summary

Name
N/A

Public Properties Summary

Name Return Type Description
CustomStyles Collection<Style> This property gets the collection of custom styles.
DefaultAreaStyle AreaStyle This property gets and sets the default AreaStyle. You should use this style if your features are area-based.
DefaultLineStyle LineStyle This property gets and sets the default LineStyle. You should use this style if your features are line-based.
DefaultPointStyle PointStyle This property gets and sets the default PointStyle. You should use this style if your features are point-based.
DefaultTextStyle TextStyle This property gets and sets the default TextStyle. You should use this style if your features are text-based (such as labels).
Value String 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.

Protected Properties Summary

Name Return Type Description
N/A N/A N/A

Public Methods Summary

Name
Equals(Object)
GetHashCode()
GetType()
ToString()

Protected Methods Summary

Name
Finalize()
MemberwiseClone()

Public Events Summary

Name Event Arguments Description
N/A N/A N/A

Members Detail

Public Constructors

Name
ValueItem()
ValueItem(String,AreaStyle)
ValueItem(String,LineStyle)
ValueItem(String,PointStyle)
ValueItem(String,TextStyle)
ValueItem(String,Collection<Style>)

Protected Constructors

Public Properties

CustomStyles

Summary

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

Collection<Style>


DefaultAreaStyle

Summary

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

AreaStyle


DefaultLineStyle

Summary

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

LineStyle


DefaultPointStyle

Summary

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

PointStyle


DefaultTextStyle

Summary

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

TextStyle


Value

Summary

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

String


Protected Properties

Public Methods

Equals(Object)

Summary

N/A

Remarks

N/A

Return Value

Type Description
Boolean N/A

Parameters

Name Type Description
obj Object N/A

GetHashCode()

Summary

N/A

Remarks

N/A

Return Value

Type Description
Int32 N/A

Parameters

Name Type Description
N/A N/A N/A

GetType()

Summary

N/A

Remarks

N/A

Return Value

Type Description
Type N/A

Parameters

Name Type Description
N/A N/A N/A

ToString()

Summary

N/A

Remarks

N/A

Return Value

Type Description
String N/A

Parameters

Name Type Description
N/A N/A N/A

Protected Methods

Finalize()

Summary

N/A

Remarks

N/A

Return Value

Type Description
Void N/A

Parameters

Name Type Description
N/A N/A N/A

MemberwiseClone()

Summary

N/A

Remarks

N/A

Return Value

Type Description
Object N/A

Parameters

Name Type Description
N/A N/A N/A

Public Events