ActiveReports.Chart Request technical support
KeyValuePair Constructor(String,Object,ICustomPropertyValueValidator,Boolean)
See Also 


key
Specifies the name of the custom property as string.
value
Specifies the value of the object.
validator
Specifies the property validator.
isPointOverridable
Specifies whether the point is overridable.
Initializes a new instance of the KeyValuePair class with the parameters specified.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal key As String, _
   ByVal value As Object, _
   ByVal validator As ICustomPropertyValueValidator, _
   ByVal isPointOverridable As Boolean _
)
Visual Basic (Usage)Copy Code
Dim key As String
Dim value As Object
Dim validator As ICustomPropertyValueValidator
Dim isPointOverridable As Boolean
 
Dim instance As KeyValuePair(key, value, validator, isPointOverridable)
C# 
public KeyValuePair( 
   string key,
   object value,
   ICustomPropertyValueValidator validator,
   bool isPointOverridable
)

Parameters

key
Specifies the name of the custom property as string.
value
Specifies the value of the object.
validator
Specifies the property validator.
isPointOverridable
Specifies whether the point is overridable.

See Also