Interface AcCmObjectAttributeChangedEventArgs<T>

Interface to define arguments of attribute changed event of one AcCmObject instance

interface AcCmObjectAttributeChangedEventArgs<T extends AcCmAttributes> {
    attrName?: string;
    attrValue?: any;
    object: AcCmObject<T>;
    options?: AcCmObjectOptions;
}

Type Parameters

Hierarchy (View Summary)

Properties

attrName?: string
attrValue?: any
object: AcCmObject<T>