GetInputArray() public method

public GetInputArray ( ) : ].object[
return ].object[
コード例 #1
0
        public static void ReplaceExcelRange(Range com, InputSample input)
        {
            bool done = false;

            while (!done)
            {
                try
                {
                    com.Value2 = input.GetInputArray();
                    done       = true;
                }
                catch (Exception)
                {
                }
            }
        }
コード例 #2
0
ファイル: BootMemo.cs プロジェクト: plasma-umass/DataDebug
        public static void ReplaceExcelRange(Range com, InputSample input)
        {
            bool done = false;
            while (!done)
            {
                try
                {
                    com.Value2 = input.GetInputArray();
                    done = true;
                }
                catch (Exception)
                {

                }
            }
        }