AcsiCell

Initializes the data elements of the structure: ST_AcsiCell.

Namespace: Tc3_Acsi
Library: Tc3_Acsi (Tc3_Acsi.compiled-library)

FUNCTION AcsiCell : ST_AcsiCell
VAR_INPUT
    xStart : REAL;
    xEnd   : REAL;
    yStart : REAL;
    yEnd   : REAL;
END_VAR

AcsiCell 1: Inputs

Name

Type

Description

xStart

REAL

Data element "xStart" to be set.

xEnd

REAL

Data element "xEnd" to be set.

yStart

REAL

Data element "yStart" to be set.

yEnd

REAL

Data element "yEnd" to be set.

AcsiCell 2: Return value

Name

Type

Description

AcsiCell

ST_AcsiCell

Structure with initialized data elements.

Example

METHOD FINAL Sample_AcsiCell : BOOL
VAR
    cell: ST_AcsiCell;
END_VAR
cell:=AcsiCell(xStart:=1.0, xEnd:=1.0, yStart:=1.0, yEnd:=1.0);
Sample_AcsiCell:=TRUE;