Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Standard.v4.4 Assembly / Xceed.Chart.Standard Namespace / ParamMapEventArgs Class
Members


In This Topic
    ParamMapEventArgs Class
    In This Topic
    The ParamMapEventArgs class derives from EventArgs and is used by the Xceed Chart for WinForms server control when it generates server side events. In a nut shell the ParamMapEventArgs implements a simple map allowing the server control to pack the parameters passed with the event in a single object. You extract values from the map by using the ParamMapEventArgs methods that also perform type conversion. You can also access the map with the help of the Params property which returns a System.Collections.SortedList object.
    Object Model
    ParamMapEventArgs Class
    Syntax
    'Declaration
     
    <ClassInterfaceAttribute(ClassInterfaceType.AutoDual)>
    Public Class ParamMapEventArgs 
       Inherits System.EventArgs
    'Usage
     
    Dim instance As ParamMapEventArgs
    [ClassInterface(ClassInterfaceType.AutoDual)]
    public class ParamMapEventArgs : System.EventArgs 
    Inheritance Hierarchy

    System.Object
       System.EventArgs
          Xceed.Chart.Standard.ParamMapEventArgs

    Public Constructors
     NameDescription
    Public ConstructorCreates a new ParamMapEventArgs object containing an empty name to value map.  
    Top
    Protected Fields
     NameDescription
    Protected FieldThis member is reserved for internal use and is not intended to be used directly from your code.  
    Top
    Public Properties
     NameDescription
    Public PropertyThe SortedList packing the parameters of the server side event.  
    Top
    Public Methods
     NameDescription
    Public MethodReturns the int value associated with a parameter name.  
    Public MethodReturns the int value at the specified index.  
    Public MethodReturns the object associated with the parameter name.  
    Public MethodReturns the object at the specified index in the map.  
    Public MethodReturns the string value associated with the parameter name.  
    Public MethodReturns the string value at the specified index in the map.  
    Top
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also