User Tools

Site Tools


visual3d:documentation:pipeline:pipeline_commands:get_pipeline_parameter_index_value

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
visual3d:documentation:pipeline:pipeline_commands:get_pipeline_parameter_index_value [2024/06/26 20:06] – removed sgrangervisual3d:documentation:pipeline:pipeline_commands:get_pipeline_parameter_index_value [2024/07/17 15:46] (current) – created sgranger
Line 1: Line 1:
 +====== Get Pipeline Parameter Index Value ======
 +
 +Description: Allow accessing pipeline parameter "array values" by "index".
 +
 +<code>
 +Get_Pipeline_Parameter_Index_Value
 +/PARAMETER_NAME=
 +/PARAMETER_VALUE=
 +/INDEX=
 +;
 +</code>
 +
 +===== Example =====
 +
 +<code>
 +Set_Pipeline_Parameter
 +/PARAMETER_NAME=running_speed
 +/PARAMETER_VALUE=10 km/h+12 km/h+14 km/h
 +;
 +
 +Set_Pipeline_Parameter
 +/PARAMETER_NAME=filenames
 +/PARAMETER_VALUE=fileA + fileB + fileC
 +;
 +
 +For_Each
 +/ITERATION_PARAMETER_NAME=file
 +/ITERATION_PARAMETER_COUNT_NAME=increment
 +/ITEMS=filenames
 +;
 +  
 +   File_Open
 +   /FILE_NAME=::file
 +   ;
 +  
 +   Get_Pipeline_Parameter_Index_Value
 +   /PARAMETER_NAME= SCOTT
 +   /PARAMETER_VALUE=::running_speed
 +   /INDEX=::increment
 +   ;
 +
 +   Assign_Tags_To_Files
 +   /MOTION_FILE_NAMES=::file
 +   /TAGS=::SCOTT
 +   ;
 +  
 +End_For_Each
 +/ITERATION_PARAMETER_NAME=file
 +;
 +</code>
 +
 +
  
visual3d/documentation/pipeline/pipeline_commands/get_pipeline_parameter_index_value.1719432412.txt.gz · Last modified: 2024/06/26 20:06 by sgranger