Smrf.NodeXL.ExcelTemplate.RunSetVisualAttributeCommandEventArgs.RunSetVisualAttributeCommandEventArgs C# (CSharp) Method

RunSetVisualAttributeCommandEventArgs() public method

Initializes a new instance of the class.
public RunSetVisualAttributeCommandEventArgs ( VisualAttributes visualAttribute, Object attributeValue ) : System
visualAttribute VisualAttributes /// Specifies the visual attribute to set. Must be only one of the flags /// in the enumeration; it cannot be an /// ORed combination. ///
attributeValue Object /// The visual attribute value, or null if the value isn't known yet and /// must be obtained from the user. ///
return System
    public RunSetVisualAttributeCommandEventArgs
    (
        VisualAttributes visualAttribute,
        Object attributeValue
    )
    {
        m_eVisualAttribute = visualAttribute;
        m_oAttributeValue = attributeValue;
        m_bVisualAttributeSet = false;

        AssertValid();
    }
RunSetVisualAttributeCommandEventArgs