Exemplo n.º 1
0
        internal static TXlsxPivotCache Load(TOpenXmlReader DataStream)
        {
            TXlsxPivotCache Result = new TXlsxPivotCache();

            Result.FCacheId = DataStream.GetAttributeAsLong("cacheId", -1);
            Result.ReadPivotCache(DataStream, DataStream.GetRelationship("id"));
            DataStream.FinishTagAndIgnoreChildren();
            return(Result);
        }