internal virtual void LoadFrom(OlapControl grid) { DebugLogging.WriteLine("OlapAxisLayoutSerializer.LoadFrom"); EmptyDataString = grid.FEmptyDataString; CurrencyFormatString = grid.FCurrencyFormatString; grid.RefreshChartsType(); ChartsType = grid.ChartsType; TrendSerialize(grid); AxesLayout = new SerializedLayout(); AxesLayout.Init(grid); var lh = new List <SerializedHierarchy>(); foreach (var d in grid.Dimensions) { foreach (var h in d.Hierarchies) { lh.Add(new SerializedHierarchy(h)); } } Hierarchies = lh.ToArray(); if (grid.FCellSet.fComments.Count > 0) { var ca = new List <SerializedICubeAddress>(grid.FCellSet.fComments.Count); var cs = new List <string>(grid.FCellSet.fComments.Count); foreach (var k in grid.FCellSet.fComments) { ca.Add(new SerializedICubeAddress(k.Key)); cs.Add(k.Value); } CommentAddresses = ca.ToArray(); CommentStrings = cs.ToArray(); } SaveCubeData(grid); }