CODIUM Programming Language (CPL) CodiumSDK CPL Routines Method
July 14, 2023 at 8:30 PM
Espacio de nombres: CodiumSDK.CPL.Routines
Ensamblado: CodiumSDK.dll
Ensamblado: CodiumSDK.dll
With this routine you can create a Method
C# |
public class Method : CodiumSDK.CPL.Routine |
Propiedades
Nombre | Descripción | |
---|---|---|
Result | Variable with the result of the method |
Métodos
Nombre | Descripción | |
---|---|---|
Parameter(name) | Obtain a parameter of the method to fill in a Routine without position, filled by CODIUM | |
Parameter(position, name) | Obtain a parameter of the method to fill in a Routine with position |
Constructores
Nombre | Descripción | |
---|---|---|
Method(program, name, description, accesor) | Constructor of the class Method | |
Method() | Constructor of the class Method |
Parameter(name)
Obtain a parameter of the method to fill in a Routine without position, filled by CODIUM
C# |
public CodiumSDK.CPL.Fill Parameter(System.String name); |
Regresa
CodiumSDK.CPL.FillParámetros
Nombre | Tipo | Descripción |
---|---|---|
name | System.String | Name of the parameter to recover |
Parameter(position, name)
Obtain a parameter of the method to fill in a Routine with position
C# |
public CodiumSDK.CPL.Fill Parameter(System.Int32 position, System.String name); |
Regresa
CodiumSDK.CPL.FillParámetros
Nombre | Tipo | Descripción |
---|---|---|
position | System.Int32 | Position of the fill parameter |
name | System.String | Name of the parameter to recover |
Method(program, name, description, accesor)
Constructor of the class Method
C# |
public Method(CodiumSDK.CPL.ProgramDefinition program, System.String name, System.String description, CodiumSDK.CPL.Routines.Method.Accesors accesor); |
Parámetros
Nombre | Tipo | Descripción |
---|---|---|
program | CodiumSDK.CPL.ProgramDefinition | Program Definition |
name | System.String | Name of the Method |
description | System.String | Description of the Method |
accesor | CodiumSDK.CPL.Routines.Method.Accesors | Access level of the Method |
Method()
Constructor of the class Method
C# |
public Method(); |