コード例 #1
0
ファイル: ResultColumns.cs プロジェクト: jmptrader/alsing-1
        internal ResultColumn GetByPhysicalName(string name)
        {
            ResultColumn obj = null;
            ResultColumn tmp = null;

            int count = this._array.Count;

            for (int i = 0; i < count; i++)
            {
                tmp = this._array[i] as ResultColumn;

                if (this.CompareStrings(name, tmp.Name))
                {
                    obj = tmp;
                    break;
                }
            }

            return(obj);
        }
コード例 #2
0
		public void Edit(ResultColumn obj)
        {
            if (this._currentType == obj.GetType()) return;
            BindGrid(obj.GlobalProperties);
            this._currentType = obj.GetType();
		}
コード例 #3
0
		public void Edit(ResultColumn obj)
		{
			BindGrid(obj.GlobalProperties);
		}