Spread WPF 18
GrapeCity.Core Namespace / ICustomProperties Interface / Add Method
The name of the custom property.
The value of the custom property.


In This Topic
    Add Method (ICustomProperties)
    In This Topic
    Adds custom property information.
    Syntax
    'Declaration
     
    Function Add( _
       ByVal name As String, _
       ByVal value As Object _
    ) As ICustomProperty
    'Usage
     
    Dim instance As ICustomProperties
    Dim name As String
    Dim value As Object
    Dim value As ICustomProperty
     
    value = instance.Add(name, value)
    ICustomProperty Add( 
       string name,
       object value
    )

    Parameters

    name
    The name of the custom property.
    value
    The value of the custom property.

    Return Value

    An ICustomProperty object that represents the custom property information.
    See Also