Example #1
0
        private void LoopLiteral_GetString(GetStringEventArgs ea)
        {
            int    count = LoopLiteral.Parameters["Count"].ValueAsInt;
            string Text  = LoopLiteral.Parameters["Text"].ValueAsStr;

            ea.Value = String.Join("", Enumerable.Repeat(Text, count).ToArray());
        }
Example #2
0
        private void LoopLiteral_GetString(GetStringEventArgs ea)
        {
            int count = LoopLiteral.Parameters["Count"].ValueAsInt;
            string Text = LoopLiteral.Parameters["Text"].ValueAsStr;

            ea.Value = String.Join("", Enumerable.Repeat(Text, count).ToArray());
        }
Example #3
0
        private void strLoopIterationValue_GetString(GetStringEventArgs ea)
        {
            int offset = strLoopIterationValue.Parameters["Offset"].ValueAsInt;

            ea.Value = (_Counter + offset).ToString();
        }
Example #4
0
 private void strLoopIterationValue_GetString(GetStringEventArgs ea)
 {
     int offset = strLoopIterationValue.Parameters["Offset"].ValueAsInt;
     ea.Value = (_Counter + offset).ToString();
 }