ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / DDCssLib Namespace / CSSDeclaration Class / AppendValue Method
The property the value should be used for.
The value of the property.

In This Topic
    AppendValue Method
    In This Topic
    Adds the specified value for the specified property to this CSSDeclaration.
    Syntax
    'Declaration
     
    Public Sub AppendValue( _
       ByVal aProperty As eCSSProperty, _
       ByVal aValue As CSSValue _
    ) 
    public void AppendValue( 
       eCSSProperty aProperty,
       CSSValue aValue
    )

    Parameters

    aProperty
    The property the value should be used for.
    aValue
    The value of the property.
    Remarks
    This method will keep track of the order that the properties are added in so that when the CSS string is recreated, you have the capability to list the properties in the same order as they were originally specified in the declaration block.
    See Also