Eplan Platform API
Eplan.EplApi.ApplicationFramework Namespace / ActionParameterProperties Class
Members Example

In This Topic
    ActionParameterProperties Class
    In This Topic
    Description of a parameter that can be passed to an ActionCallingContext. This class only serves for documentation purposes.
    Inheritance Hierarchy

    System.Object
       Eplan.EplApi.ApplicationFramework.ActionParameterProperties

    Syntax
    public class ActionParameterProperties 
    public ref class ActionParameterProperties 
    Example
    Example of listing action parameters
    ActionManager actionManager = new ActionManager();
    EplApi.ApplicationFramework.Action foundAction = actionManager.FindAction("ActionExample");
    
    ArrayList listOfParameterProperties = foundAction.ActionProperties.GetParameterProperties();
    
    if (listOfParameterProperties.Count > 0)
    {
    
        foreach (ActionParameterProperties parameterProperty in listOfParameterProperties)
        {
            string strParamName = parameterProperty.Name;
            Debug.WriteLine(strParamName);
    
        }
    }
    
    
    Public Constructors
     NameDescription
    Public ConstructorOverloaded.   
    Top
    Public Properties
     NameDescription
    Public PropertyName of a parameter.  
    Top
    Public Methods
     NameDescription
    Public MethodDestructor for deterministic finalization of ActionParameterProperties object.  
    Public MethodFor internal use only.  
    Public MethodDescription text of a parameter. Sets name and description text of a parameter.  
    Top
    See Also