GetInputArray() public méthode

public GetInputArray ( ) : ].object[
Résultat ].object[
Exemple #1
0
        public static void ReplaceExcelRange(Range com, InputSample input)
        {
            bool done = false;

            while (!done)
            {
                try
                {
                    com.Value2 = input.GetInputArray();
                    done       = true;
                }
                catch (Exception)
                {
                }
            }
        }
Exemple #2
0
        public static void ReplaceExcelRange(Range com, InputSample input)
        {
            bool done = false;
            while (!done)
            {
                try
                {
                    com.Value2 = input.GetInputArray();
                    done = true;
                }
                catch (Exception)
                {

                }
            }
        }