Espacio de nombres: CodiumSDK.CPL.Routines
Ensamblado: CodiumSDK.dll

With this routine you can create a Method
C#
public class Method : CodiumSDK.CPL.Routine

Propiedades

NombreDescripción
ResultVariable with the result of the method

Métodos

NombreDescripció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

NombreDescripció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.Fill

Parámetros

NombreTipoDescripción
nameSystem.StringName 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.Fill

Parámetros

NombreTipoDescripción
positionSystem.Int32Position of the fill parameter
nameSystem.StringName 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

NombreTipoDescripción
programCodiumSDK.CPL.ProgramDefinitionProgram Definition
nameSystem.StringName of the Method
descriptionSystem.StringDescription of the Method
accesorCodiumSDK.CPL.Routines.Method.AccesorsAccess level of the Method

Method()

Constructor of the class Method
C#
public Method();