ImageGear .NET v25.2 - Updated
ImageGear.Art Assembly / ImageGear.ART Namespace / ImGearARTPropertyChangedEventArgs Class / ImGearARTPropertyChangedEventArgs Constructor
The name of changed property.
The old value of changed property.
The new value of changed property.




In This Topic
    ImGearARTPropertyChangedEventArgs Constructor
    In This Topic
    Initializes a new instance of the ImGearARTPropertyChangedEventArgs class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal propertyName As String, _
       ByVal oldPropertyValue As Object, _
       ByVal newPropertyValue As Object _
    )
    'Usage
     
    Dim propertyName As String
    Dim oldPropertyValue As Object
    Dim newPropertyValue As Object
     
    Dim instance As New ImGearARTPropertyChangedEventArgs(propertyName, oldPropertyValue, newPropertyValue)
    public ImGearARTPropertyChangedEventArgs( 
       string propertyName,
       object oldPropertyValue,
       object newPropertyValue
    )
    public: ImGearARTPropertyChangedEventArgs( 
       string* propertyName,
       Object* oldPropertyValue,
       Object* newPropertyValue
    )
    public:
    ImGearARTPropertyChangedEventArgs( 
       String^ propertyName,
       Object^ oldPropertyValue,
       Object^ newPropertyValue
    )

    Parameters

    propertyName
    The name of changed property.
    oldPropertyValue
    The old value of changed property.
    newPropertyValue
    The new value of changed property.
    See Also