-- WORK IN PROGRESS --

Table Of Contents

Writing Operation Boxes




Output Tiebacks



# DECLARE AN INPUT BUTTON
input A
{
    float { 0.0 -100.0 100.0 0 "%f" }
}

# DECLARE OUTPUT BUTTON AS A TIEBACK TO INPUT
#    Boxes downstream connected to this button will be
#    directly referencing the input button 'A'.
#
output tieback=IN OUT
{
    float out
}

Fixed Value Outputs


# DECLARE A FIXED VALUE OUTPUT BUTTON 'OUT'
#    Boxes downstream connected to this button will be
#    directly referencing the input button 'A'.
#
output fixedvalue=foo OUT
{
    float out
}

Builtin Variables

Declaring Variables

${STREE_DeclareHead_IN} foo${STREE_DeclareTail_IN}
float foo;
miInteger foo;
${STREE_DeclareHead_IN} ${STREE_BoxTitleWid}_array${STREE_DeclareTail_IN}
float MyBox_12_array;
float MyBox_12_array;
float MyBox_13_array;
float MyBox_14_array;