CODIUM Programming Language (CPL) CodiumSDK CPL Routines DeclareVariable
July 14, 2023 at 8:30 PM
Espacio de nombres: CodiumSDK.CPL.Routines
Ensamblado: CodiumSDK.dll
Ensamblado: CodiumSDK.dll
Class to Declare a Variable
C# |
public class DeclareVariable : CodiumSDK.CPL.Routine |
Propiedades
Nombre | Descripción | |
---|---|---|
MethodResult | Create a Instance of Variable with the result of the method |
Métodos
Nombre | Descripción | |
---|---|---|
Value() | Return the Value of the Variable to Fill a Routine without position, filled by CODIUM | |
Value(position) | Return the Value of the Variable to Fill a Routine with position |
Constructores
Nombre | Descripción | |
---|---|---|
DeclareVariable() | Empty Constructor of the class Declare Variable | |
DeclareVariable(program, name, description, type) | Constructor of the class Declare Variable with name,description and type |
Value()
Return the Value of the Variable to Fill a Routine without position, filled by CODIUM
C# |
public CodiumSDK.CPL.Fill Value(); |
Regresa
CodiumSDK.CPL.FillValue(position)
Return the Value of the Variable to Fill a Routine with position
C# |
public CodiumSDK.CPL.Fill Value(System.Int32 position); |
Regresa
CodiumSDK.CPL.FillParámetros
Nombre | Tipo | Descripción |
---|---|---|
position | System.Int32 |
DeclareVariable()
Empty Constructor of the class Declare Variable
C# |
public DeclareVariable(); |
DeclareVariable(program, name, description, type)
Constructor of the class Declare Variable with name,description and type
C# |
public DeclareVariable(CodiumSDK.CPL.ProgramDefinition program, System.String name, System.String description, CodiumSDK.CPL.CPLType type); |
Parámetros
Nombre | Tipo | Descripción |
---|---|---|
program | CodiumSDK.CPL.ProgramDefinition | Program Definition |
name | System.String | Name of the Variable |
description | System.String | |
type | CodiumSDK.CPL.CPLType | Type of the Variable |