Esempio n. 1
0
 public Result VisitMatrixViewModel(IMatrixValueViewModel matrixValueViewModel)
 {
     throw new NotImplementedException();
 }
 public bool VisitMatrixViewModel(IMatrixValueViewModel matrixValueViewModel)
 {
     throw new System.NotImplementedException();
 }
Esempio n. 3
0
        //public override void InitFromValue(IFormattedValue value)
        //{
        //    Model = value;
        //    FillTable();
        //    base.InitFromValue(value);
        //}

        //private void FillTable()
        //{
        //    IMatrixValue matrixValue = Model as IMatrixValue;
        //    if (matrixValue == null) return;
        //    try
        //    {
        //        Table = _matrixViewModelTableFactory.CreateMatrixDataTable(matrixValue, false);
        //    }
        //    catch (Exception e)
        //    {
        //        Console.WriteLine(e);
        //        throw;
        //    }
        //}

        public object Clone()
        {
            IMatrixValueViewModel matrixItem = OnCloning();

            return(matrixItem);
        }