From d08e58be9dfdfd5b1b2a3b9d27e15a4ef365750b Mon Sep 17 00:00:00 2001 From: JanKallman Date: Tue, 10 Jan 2023 15:42:53 +0100 Subject: [PATCH 1/7] Fixes issue #778 and #784. Fixed small issue with the number format General and numbers smaller that five decimals. --- .../Worksheet/WorksheetRangeDeleteHelper.cs | 2 ++ .../Worksheet/WorksheetRangeInsertHelper.cs | 29 +++++++++++++++++-- src/EPPlus/ExcelCellBase.cs | 10 +++++-- src/EPPlus/ExcelWorksheet.cs | 1 + .../LexicalAnalysis/TokenFactory.cs | 24 +++++++++++---- .../LexicalAnalysis/TokenHandler.cs | 3 +- .../Utilities/RegexConstants.cs | 18 ++++++------ .../Style/XmlAccess/ExcelNumberFormatXml.cs | 2 +- src/EPPlus/Table/ExcelTableColumn.cs | 11 ++++++- src/EPPlusTest/Issues.cs | 15 ++++++++++ 10 files changed, 92 insertions(+), 23 deletions(-) diff --git a/src/EPPlus/Core/Worksheet/WorksheetRangeDeleteHelper.cs b/src/EPPlus/Core/Worksheet/WorksheetRangeDeleteHelper.cs index 515727e02..bcbbf1fac 100644 --- a/src/EPPlus/Core/Worksheet/WorksheetRangeDeleteHelper.cs +++ b/src/EPPlus/Core/Worksheet/WorksheetRangeDeleteHelper.cs @@ -244,6 +244,7 @@ private static void DeleteCellStores(ExcelWorksheet ws, int rowFrom, int columnF //Store ws._values.Delete(rowFrom, columnFrom, rows, columns, true); ws._formulas.Delete(rowFrom, columnFrom, rows, columns, true); + ws._formulaTokens.Delete(rowFrom, columnFrom, rows, columns, true); ws._flags.Delete(rowFrom, columnFrom, rows, columns, true); ws._metadataStore.Delete(rowFrom, columnFrom, rows, columns, true); ws._commentsStore.Delete(rowFrom, columnFrom, rows, columns, true); @@ -276,6 +277,7 @@ private static void DeleteCellStoresShiftLeft(ExcelWorksheet ws, ExcelRangeBase //Store ws._values.DeleteShiftLeft(fromAddress); ws._formulas.DeleteShiftLeft(fromAddress); + ws._formulaTokens.DeleteShiftLeft(fromAddress); ws._flags.DeleteShiftLeft(fromAddress); ws._metadataStore.DeleteShiftLeft(fromAddress); ws._commentsStore.DeleteShiftLeft(fromAddress); diff --git a/src/EPPlus/Core/Worksheet/WorksheetRangeInsertHelper.cs b/src/EPPlus/Core/Worksheet/WorksheetRangeInsertHelper.cs index 0474d0a1a..4675ef054 100644 --- a/src/EPPlus/Core/Worksheet/WorksheetRangeInsertHelper.cs +++ b/src/EPPlus/Core/Worksheet/WorksheetRangeInsertHelper.cs @@ -16,6 +16,10 @@ Date Author Change using OfficeOpenXml.DataValidation; using OfficeOpenXml.DataValidation.Formulas.Contracts; using OfficeOpenXml.Drawing; +using OfficeOpenXml.FormulaParsing; +using OfficeOpenXml.FormulaParsing.Excel.Functions; +using OfficeOpenXml.FormulaParsing.Excel.Functions.Math; +using OfficeOpenXml.FormulaParsing.LexicalAnalysis; using OfficeOpenXml.Table; using OfficeOpenXml.Table.PivotTable; using System; @@ -714,6 +718,8 @@ private static void AdjustFormulasInsert(ExcelRangeBase range, ExcelAddressBase private static void FixFormulasInsertRow(ExcelWorksheet ws, int rowFrom, int rows, int columnFrom=0, int columnTo=ExcelPackage.MaxColumns) { + var sct = new SourceCodeTokenizer(FunctionNameProvider.Empty, NameValueProvider.Empty); + //Adjust formulas foreach (var wsToUpdate in ws.Workbook.Worksheets) { @@ -751,15 +757,30 @@ private static void FixFormulasInsertRow(ExcelWorksheet ws, int rowFrom, int row { if (ws.Name == wsToUpdate.Name) { - cse.Value = ExcelCellBase.UpdateFormulaReferences(v, rows, 0, rowFrom, 0, wsToUpdate.Name, ws.Name); + var tokens = GetTokens(wsToUpdate, cse.Row, cse.Column, v); + cse.Value = ExcelCellBase.UpdateFormulaReferences(v, rows, 0, rowFrom, 0, wsToUpdate.Name, ws.Name, false, false, tokens); } else if (v.Contains(ws.Name)) { - cse.Value = ExcelCellBase.UpdateFormulaReferences(v, rows, 0, rowFrom, 0, wsToUpdate.Name, ws.Name); + var tokens = GetTokens(wsToUpdate, cse.Row, cse.Column, v); + cse.Value = ExcelCellBase.UpdateFormulaReferences(v, rows, 0, rowFrom, 0, wsToUpdate.Name, ws.Name, false, false, tokens); } } } } } + + private static SourceCodeTokenizer _sct = new SourceCodeTokenizer(FunctionNameProvider.Empty, NameValueProvider.Empty); + private static IEnumerable GetTokens(ExcelWorksheet ws, int row, int column, string formula) + { + var tokens = ws._formulaTokens.GetValue(row, column); + if(tokens==null) + { + tokens = (List)_sct.Tokenize(formula, ws.Name); + ws._formulaTokens.SetValue(row, column, tokens); + } + return tokens; + } + private static void FixFormulasInsertColumn(ExcelWorksheet ws, int columnFrom, int columns) { foreach (var wsToUpdate in ws.Workbook.Worksheets) @@ -842,12 +863,13 @@ private static void ValidateInsertRow(ExcelWorksheet ws, int rowFrom, int rows, } var insertRange=new ExcelAddressBase(rowFrom, columnFrom, rowFrom + rows - 1, columnFrom + columns - 1); - FormulaDataTableValidation.HasPartlyFormulaDataTable(ws, insertRange, false, "Can't insert into a part of a data table function"); + FormulaDataTableValidation.HasPartlyFormulaDataTable(ws, insertRange, false, "Can't insert into a part of a data table function"); } internal static void InsertCellStores(ExcelWorksheet ws, int rowFrom, int columnFrom, int rows, int columns, int columnTo=ExcelPackage.MaxColumns) { ws._values.Insert(rowFrom, columnFrom, rows, columns); ws._formulas.Insert(rowFrom, columnFrom, rows, columns); + ws._formulaTokens.Insert(rowFrom, columnFrom, rows, columns); ws._commentsStore.Insert(rowFrom, columnFrom, rows, columns); ws._threadedCommentsStore.Insert(rowFrom, columnFrom, rows, columns); ws._hyperLinks.Insert(rowFrom, columnFrom, rows, columns); @@ -874,6 +896,7 @@ internal static void InsertCellStoreShiftRight(ExcelWorksheet ws, ExcelAddressBa { ws._values.InsertShiftRight(fromAddress); ws._formulas.InsertShiftRight(fromAddress); + ws._formulaTokens.InsertShiftRight(fromAddress); ws._commentsStore.InsertShiftRight(fromAddress); ws._threadedCommentsStore.InsertShiftRight(fromAddress); ws._hyperLinks.InsertShiftRight(fromAddress); diff --git a/src/EPPlus/ExcelCellBase.cs b/src/EPPlus/ExcelCellBase.cs index 3d2ed5b4f..cb02e9ff5 100644 --- a/src/EPPlus/ExcelCellBase.cs +++ b/src/EPPlus/ExcelCellBase.cs @@ -869,6 +869,7 @@ public static bool IsValidCellAddress(string cellAddress) } #endregion #region UpdateFormulaReferences + private static SourceCodeTokenizer _sct = new SourceCodeTokenizer(FunctionNameProvider.Empty, NameValueProvider.Empty); /// /// Updates the Excel formula so that all the cellAddresses are incremented by the row and column increments /// if they fall after the afterRow and afterColumn. @@ -883,13 +884,16 @@ public static bool IsValidCellAddress(string cellAddress) /// The sheet where cells are being inserted or deleted. /// Fixed address /// If a copy operation is performed, fully fixed cells should be untoughe. + /// Tokens, if a cache exists /// The updated version of the . - internal static string UpdateFormulaReferences(string formula, int rowIncrement, int colIncrement, int afterRow, int afterColumn, string currentSheet, string modifiedSheet, bool setFixed = false, bool copy=false) + internal static string UpdateFormulaReferences(string formula, int rowIncrement, int colIncrement, int afterRow, int afterColumn, string currentSheet, string modifiedSheet, bool setFixed = false, bool copy=false, IEnumerable tokens=null) { try { - var sct = new SourceCodeTokenizer(FunctionNameProvider.Empty, NameValueProvider.Empty); - var tokens = sct.Tokenize(formula); + if(tokens==null) + { + tokens = _sct.Tokenize(formula); + } var f = ""; foreach (var t in tokens) { diff --git a/src/EPPlus/ExcelWorksheet.cs b/src/EPPlus/ExcelWorksheet.cs index 9c75b26b9..8c580dee9 100644 --- a/src/EPPlus/ExcelWorksheet.cs +++ b/src/EPPlus/ExcelWorksheet.cs @@ -474,6 +474,7 @@ public ExcelWorksheet(XmlNamespaceManager ns, ExcelPackage excelPackage, string _metadataStore = new CellStore(); _commentsStore = new CellStore(); _threadedCommentsStore = new CellStore(); + _formulaTokens = new CellStore>(); _hyperLinks = new CellStore(); _nextControlId = (PositionId + 1) * 1024 + 1; _names = new ExcelNamedRangeCollection(Workbook, this); diff --git a/src/EPPlus/FormulaParsing/LexicalAnalysis/TokenFactory.cs b/src/EPPlus/FormulaParsing/LexicalAnalysis/TokenFactory.cs index 5bbe951c9..a13bf75db 100644 --- a/src/EPPlus/FormulaParsing/LexicalAnalysis/TokenFactory.cs +++ b/src/EPPlus/FormulaParsing/LexicalAnalysis/TokenFactory.cs @@ -21,6 +21,8 @@ Date Author Change using OfficeOpenXml.FormulaParsing.ExcelUtilities; using OfficeOpenXml.FormulaParsing.Utilities; using OfficeOpenXml; +using OfficeOpenXml.Utils; +using OfficeOpenXml.FormulaParsing.Excel.Functions.Math; namespace OfficeOpenXml.FormulaParsing.LexicalAnalysis { @@ -103,15 +105,15 @@ public Token Create(IEnumerable tokens, string token, string worksheet) { token = token.Trim(); } - if (Regex.IsMatch(token, RegexConstants.Decimal)) + if (IsNumeric(token, false)) { - return new Token(token, TokenType.Decimal); + return new Token(token, TokenType.Integer); } - if(Regex.IsMatch(token, RegexConstants.Integer)) + if (IsNumeric(token, true)) { - return new Token(token, TokenType.Integer); + return new Token(token, TokenType.Decimal); } - if (Regex.IsMatch(token, RegexConstants.Boolean, RegexOptions.IgnoreCase)) + if (token.Equals("true", StringComparison.InvariantCultureIgnoreCase) || token.Equals("false", StringComparison.InvariantCultureIgnoreCase)) { return new Token(token, TokenType.Boolean); } @@ -160,6 +162,18 @@ public Token Create(IEnumerable tokens, string token, string worksheet) } + public static bool IsNumeric(string value, bool allowDecimal) + { + foreach(var c in value) + { + if ((c < '0' || c > '9') && (allowDecimal == false || c != '.')) + { + return false; + } + } + return true; + } + public Token Create(string token, TokenType explicitTokenType) { return new Token(token, explicitTokenType); diff --git a/src/EPPlus/FormulaParsing/LexicalAnalysis/TokenHandler.cs b/src/EPPlus/FormulaParsing/LexicalAnalysis/TokenHandler.cs index 4a446a2e4..917f52061 100644 --- a/src/EPPlus/FormulaParsing/LexicalAnalysis/TokenHandler.cs +++ b/src/EPPlus/FormulaParsing/LexicalAnalysis/TokenHandler.cs @@ -63,7 +63,8 @@ private void Handle() if (_context.CurrentTokenHasValue) { - if (Regex.IsMatch(_context.CurrentToken, "^\"*$")) + //if (Regex.IsMatch(_context.CurrentToken, "^\"*$")) + if(_context.CurrentToken.StartsWith("\"") && _context.CurrentToken.EndsWith("\"")) { _context.AddToken(_tokenFactory.Create(_context.CurrentToken, TokenType.StringContent)); } diff --git a/src/EPPlus/FormulaParsing/Utilities/RegexConstants.cs b/src/EPPlus/FormulaParsing/Utilities/RegexConstants.cs index a40683f35..69b245991 100644 --- a/src/EPPlus/FormulaParsing/Utilities/RegexConstants.cs +++ b/src/EPPlus/FormulaParsing/Utilities/RegexConstants.cs @@ -34,14 +34,14 @@ public static class RegexConstants /// /// Regex constant matching a boolean expression (true or false) /// - public const string Boolean = @"^(true|false)$"; - /// - /// Regex constant matching a decimal expression - /// - public const string Decimal = @"^[0-9]+\.[0-9]+$"; - /// - /// Regex constant matching an integer expression - /// - public const string Integer = @"^[0-9]+$"; + //public const string Boolean = @"^(true|false)$"; + ///// + ///// Regex constant matching a decimal expression + ///// + //public const string Decimal = @"^[0-9]+\.[0-9]+$"; + ///// + ///// Regex constant matching an integer expression + ///// + //public const string Integer = @"^[0-9]+$"; } } diff --git a/src/EPPlus/Style/XmlAccess/ExcelNumberFormatXml.cs b/src/EPPlus/Style/XmlAccess/ExcelNumberFormatXml.cs index 9d9624e7a..bae831807 100644 --- a/src/EPPlus/Style/XmlAccess/ExcelNumberFormatXml.cs +++ b/src/EPPlus/Style/XmlAccess/ExcelNumberFormatXml.cs @@ -229,7 +229,7 @@ internal ExcelFormatTranslator(string format, int numFmtID) } else if (format.Equals("general",StringComparison.OrdinalIgnoreCase)) { - f.NetFormat = f.NetFormatForWidth = "0.#####"; + f.NetFormat = f.NetFormatForWidth = "0.#########"; DataType = eFormatType.Number; } else diff --git a/src/EPPlus/Table/ExcelTableColumn.cs b/src/EPPlus/Table/ExcelTableColumn.cs index 64dc1b7e5..631ae7af7 100644 --- a/src/EPPlus/Table/ExcelTableColumn.cs +++ b/src/EPPlus/Table/ExcelTableColumn.cs @@ -302,9 +302,18 @@ internal void SetFormulaCells(int fromRow, int toRow, int colNum) string r1c1Formula = ExcelCellBase.TranslateToR1C1(CalculatedColumnFormula, _tbl.ShowHeader ? _tbl.Address._fromRow + 1 : _tbl.Address._fromRow, colNum); bool needsTranslation = r1c1Formula != CalculatedColumnFormula; + var ws = _tbl.WorkSheet; for (int row = fromRow; row <= toRow; row++) { - _tbl.WorkSheet.SetFormula(row, colNum, needsTranslation ? ExcelCellBase.TranslateFromR1C1(r1c1Formula, row, colNum) : r1c1Formula); + if(needsTranslation) + { + var f = ExcelCellBase.TranslateFromR1C1(r1c1Formula, row, colNum); + ws.SetFormula(row, colNum, f); + } + else if(ws._formulas.Exists(row, colNum)==false) + { + ws.SetFormula(row, colNum, CalculatedColumnFormula); + } } } } diff --git a/src/EPPlusTest/Issues.cs b/src/EPPlusTest/Issues.cs index e03e0710c..351143ce3 100644 --- a/src/EPPlusTest/Issues.cs +++ b/src/EPPlusTest/Issues.cs @@ -4200,5 +4200,20 @@ public void I778() SaveAndCleanup(package); } } + [TestMethod] + public void S415() + { + using(var p = OpenTemplatePackage("s415.xlsx")) + { + var ws = p.Workbook.Worksheets[0]; + //ws.Cells["A1:A4"].Style.Numberformat.Format = "0.000000"; + Assert.AreEqual("0,000000", ws.Cells["A1"].Text); + Assert.AreEqual("0,000001", ws.Cells["A2"].Text); + Assert.AreEqual("0,000002", ws.Cells["A3"].Text); + Assert.AreEqual("0,000005", ws.Cells["A4"].Text); + SaveAndCleanup(p); + } + } + } } From f611a7d18878d5f6a35eaf21f0ea035baf5da594 Mon Sep 17 00:00:00 2001 From: JanKallman Date: Fri, 13 Jan 2023 14:02:44 +0100 Subject: [PATCH 2/7] Fixed more failing tests. Fixed If function to support arrays --- docs/api/.manifest | 19 +- ...ing.Chart.ChartEx.ExcelBoxWhiskerChart.yml | 28 +- ...Xml.Drawing.Chart.ChartEx.ExcelChartEx.yml | 142 +++- ...rawing.Chart.ChartEx.ExcelChartExTitle.yml | 68 +- ...Drawing.Chart.ChartEx.ExcelFunnelChart.yml | 28 +- ...wing.Chart.ChartEx.ExcelHistogramChart.yml | 28 +- ...wing.Chart.ChartEx.ExcelRegionMapChart.yml | 28 +- ...awing.Chart.ChartEx.ExcelSunburstChart.yml | 28 +- ...rawing.Chart.ChartEx.ExcelTreemapChart.yml | 28 +- ...wing.Chart.ChartEx.ExcelWaterfallChart.yml | 28 +- .../OfficeOpenXml.Drawing.Chart.ChartEx.yml | 1 + ...ceOpenXml.Drawing.Chart.ExcelAreaChart.yml | 42 +- ...iceOpenXml.Drawing.Chart.ExcelBarChart.yml | 42 +- ...OpenXml.Drawing.Chart.ExcelBubbleChart.yml | 42 +- ...OfficeOpenXml.Drawing.Chart.ExcelChart.yml | 102 +-- ...l.Drawing.Chart.ExcelChartAxisStandard.yml | 102 ++- ...enXml.Drawing.Chart.ExcelChartStandard.yml | 234 ++++-- ...eOpenXml.Drawing.Chart.ExcelChartTitle.yml | 37 +- ....Drawing.Chart.ExcelChartTitleStandard.yml | 553 ++++++++++++++ ...enXml.Drawing.Chart.ExcelDoughnutChart.yml | 42 +- ...ceOpenXml.Drawing.Chart.ExcelLineChart.yml | 42 +- ...eOpenXml.Drawing.Chart.ExcelOfPieChart.yml | 42 +- ...iceOpenXml.Drawing.Chart.ExcelPieChart.yml | 42 +- ...eOpenXml.Drawing.Chart.ExcelRadarChart.yml | 42 +- ...penXml.Drawing.Chart.ExcelScatterChart.yml | 42 +- ...wing.Chart.ExcelStandardChartWithLines.yml | 42 +- ...eOpenXml.Drawing.Chart.ExcelStockChart.yml | 42 +- ...penXml.Drawing.Chart.ExcelSurfaceChart.yml | 42 +- docs/api/OfficeOpenXml.Drawing.Chart.yml | 8 + .../OfficeOpenXml.Drawing.ExcelDrawings.yml | 2 +- .../OfficeOpenXml.Drawing.ExcelGroupShape.yml | 2 +- ...penXml.Drawing.Theme.ExcelThemeManager.yml | 8 +- docs/api/OfficeOpenXml.ExcelRangeColumn.yml | 4 +- docs/api/OfficeOpenXml.ExcelRow.yml | 20 +- docs/api/OfficeOpenXml.ExcelWorksheet.yml | 128 ++-- ...ctionCompilers.FunctionCompilerFactory.yml | 2 +- ...ormulaParsing.Utilities.RegexConstants.yml | 108 --- ...Xml.Packaging.Ionic.Zlib.DeflateStream.yml | 546 ++++++++++++++ ...penXml.Packaging.Ionic.Zlib.GZipStream.yml | 546 ++++++++++++++ ...Ionic.Zlib.ParallelDeflateOutputStream.yml | 546 ++++++++++++++ ...penXml.Packaging.Ionic.Zlib.ZlibStream.yml | 546 ++++++++++++++ ...aging.ZipPackageRelationshipCollection.yml | 10 +- .../api/OfficeOpenXml.Style.ExcelRichText.yml | 83 ++- ...eOpenXml.Style.ExcelRichTextCollection.yml | 22 +- ...OfficeOpenXml.Style.ExcelRichTextColor.yml | 675 ++++++++++++++++++ docs/api/OfficeOpenXml.Style.yml | 7 + docs/api/OfficeOpenXml.Table.ExcelTable.yml | 4 +- ...ficeOpenXml.Table.ExcelTableCollection.yml | 18 +- .../api/OfficeOpenXml.VBA.ExcelVbaProject.yml | 32 +- docs/api/OfficeOpenXml.XmlHelper.yml | 1 + docs/api/toc.yml | 4 + 51 files changed, 4493 insertions(+), 787 deletions(-) create mode 100644 docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.yml create mode 100644 docs/api/OfficeOpenXml.Style.ExcelRichTextColor.yml diff --git a/docs/api/.manifest b/docs/api/.manifest index 80ac0e6c8..76d162263 100644 --- a/docs/api/.manifest +++ b/docs/api/.manifest @@ -794,6 +794,8 @@ "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.Title": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.yml", "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.VaryColors": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.yml", "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.View3D": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.yml", + "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.yml", + "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.yml", "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis.yml", "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis.AxisPosition": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis.yml", "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis.CrossBetween": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis.yml", @@ -898,6 +900,7 @@ "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.yml", "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.Position": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.yml", "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.PositionAlignment": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.yml", + "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.Text": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.yml", "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExValueColor": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExValueColor.yml", "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExValueColor.Color": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExValueColor.yml", "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExValueColor.PositionValue": "OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExValueColor.yml", @@ -1399,6 +1402,7 @@ "OfficeOpenXml.Drawing.Chart.ExcelChartAxis.TickLabelPosition": "OfficeOpenXml.Drawing.Chart.ExcelChartAxis.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartAxis.Title": "OfficeOpenXml.Drawing.Chart.ExcelChartAxis.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard": "OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.yml", + "OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.AddTitle(OfficeOpenXml.ExcelRangeBase)": "OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.AxisPosition": "OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.CrossBetween": "OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.Crosses": "OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.yml", @@ -1590,6 +1594,7 @@ "OfficeOpenXml.Drawing.Chart.ExcelChartSerieWithHorizontalErrorBars.AddErrorBars(OfficeOpenXml.Drawing.eErrorBarType,OfficeOpenXml.Drawing.eErrorValueType,System.Nullable{OfficeOpenXml.Drawing.eErrorBarDirection})": "OfficeOpenXml.Drawing.Chart.ExcelChartSerieWithHorizontalErrorBars.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartSerieWithHorizontalErrorBars.ErrorBarsX": "OfficeOpenXml.Drawing.Chart.ExcelChartSerieWithHorizontalErrorBars.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartStandard": "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml", + "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis": "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Border": "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.DeleteTitle": "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.DisplayBlanksAs": "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml", @@ -1611,6 +1616,8 @@ "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Title": "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors": "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D": "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml", + "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis": "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml", + "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis": "OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartStandardSerie": "OfficeOpenXml.Drawing.Chart.ExcelChartStandardSerie.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartStandardSerie.CreateCache": "OfficeOpenXml.Drawing.Chart.ExcelChartStandardSerie.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartStandardSerie.Header": "OfficeOpenXml.Drawing.Chart.ExcelChartStandardSerie.yml", @@ -1645,6 +1652,9 @@ "OfficeOpenXml.Drawing.Chart.ExcelChartTitle.TextBody": "OfficeOpenXml.Drawing.Chart.ExcelChartTitle.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartTitle.TextVertical": "OfficeOpenXml.Drawing.Chart.ExcelChartTitle.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartTitle.ThreeD": "OfficeOpenXml.Drawing.Chart.ExcelChartTitle.yml", + "OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard": "OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.yml", + "OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.LinkedCell": "OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.yml", + "OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.Text": "OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartTrendline": "OfficeOpenXml.Drawing.Chart.ExcelChartTrendline.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartTrendline.Backward": "OfficeOpenXml.Drawing.Chart.ExcelChartTrendline.yml", "OfficeOpenXml.Drawing.Chart.ExcelChartTrendline.Border": "OfficeOpenXml.Drawing.Chart.ExcelChartTrendline.yml", @@ -6770,10 +6780,7 @@ "OfficeOpenXml.FormulaParsing.Utilities.ArgumentInfo`1.Named(System.String)": "OfficeOpenXml.FormulaParsing.Utilities.ArgumentInfo-1.yml", "OfficeOpenXml.FormulaParsing.Utilities.ArgumentInfo`1.Value": "OfficeOpenXml.FormulaParsing.Utilities.ArgumentInfo-1.yml", "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants": "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.yml", - "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Boolean": "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.yml", - "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Decimal": "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.yml", "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.ExcelAddress": "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.yml", - "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Integer": "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.yml", "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.SingleCellAddress": "OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.yml", "OfficeOpenXml.FormulaParsing.Utilities.Require": "OfficeOpenXml.FormulaParsing.Utilities.Require.yml", "OfficeOpenXml.FormulaParsing.Utilities.Require.That``1(``0)": "OfficeOpenXml.FormulaParsing.Utilities.Require.yml", @@ -7584,6 +7591,7 @@ "OfficeOpenXml.Style.ExcelRichText._collection": "OfficeOpenXml.Style.ExcelRichText.yml", "OfficeOpenXml.Style.ExcelRichText.Bold": "OfficeOpenXml.Style.ExcelRichText.yml", "OfficeOpenXml.Style.ExcelRichText.Color": "OfficeOpenXml.Style.ExcelRichText.yml", + "OfficeOpenXml.Style.ExcelRichText.ColorSettings": "OfficeOpenXml.Style.ExcelRichText.yml", "OfficeOpenXml.Style.ExcelRichText.FontName": "OfficeOpenXml.Style.ExcelRichText.yml", "OfficeOpenXml.Style.ExcelRichText.HtmlText": "OfficeOpenXml.Style.ExcelRichText.yml", "OfficeOpenXml.Style.ExcelRichText.Italic": "OfficeOpenXml.Style.ExcelRichText.yml", @@ -7605,6 +7613,11 @@ "OfficeOpenXml.Style.ExcelRichTextCollection.System#Collections#Generic#IEnumerable{OfficeOpenXml#Style#ExcelRichText}#GetEnumerator": "OfficeOpenXml.Style.ExcelRichTextCollection.yml", "OfficeOpenXml.Style.ExcelRichTextCollection.System#Collections#IEnumerable#GetEnumerator": "OfficeOpenXml.Style.ExcelRichTextCollection.yml", "OfficeOpenXml.Style.ExcelRichTextCollection.Text": "OfficeOpenXml.Style.ExcelRichTextCollection.yml", + "OfficeOpenXml.Style.ExcelRichTextColor": "OfficeOpenXml.Style.ExcelRichTextColor.yml", + "OfficeOpenXml.Style.ExcelRichTextColor.Color": "OfficeOpenXml.Style.ExcelRichTextColor.yml", + "OfficeOpenXml.Style.ExcelRichTextColor.Rgb": "OfficeOpenXml.Style.ExcelRichTextColor.yml", + "OfficeOpenXml.Style.ExcelRichTextColor.Theme": "OfficeOpenXml.Style.ExcelRichTextColor.yml", + "OfficeOpenXml.Style.ExcelRichTextColor.Tint": "OfficeOpenXml.Style.ExcelRichTextColor.yml", "OfficeOpenXml.Style.ExcelSlicerTableStyleElement": "OfficeOpenXml.Style.ExcelSlicerTableStyleElement.yml", "OfficeOpenXml.Style.ExcelSlicerTableStyleElement.Style": "OfficeOpenXml.Style.ExcelSlicerTableStyleElement.yml", "OfficeOpenXml.Style.ExcelSlicerTableStyleElement.Type": "OfficeOpenXml.Style.ExcelSlicerTableStyleElement.yml", diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelBoxWhiskerChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelBoxWhiskerChart.yml index e6b56340d..7f093c50b 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelBoxWhiskerChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelBoxWhiskerChart.yml @@ -61,6 +61,8 @@ items: - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.RoundedCorners - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowDataLabelsOverMaximum - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -69,8 +71,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -358,6 +358,18 @@ references: name: ShowHiddenData nameWithType: ExcelChartEx.ShowHiddenData fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: XAxis + nameWithType: ExcelChartEx.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: YAxis + nameWithType: ExcelChartEx.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -406,18 +418,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.yml index 844a4b830..632a2fdcc 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.yml @@ -26,6 +26,8 @@ items: - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.Title - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.VaryColors - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.View3D + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis langs: - csharp - vb @@ -76,8 +78,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -274,7 +274,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Title path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 247 + startLine: 246 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -311,7 +311,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Legend path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 261 + startLine: 264 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -348,7 +348,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Border path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 277 + startLine: 280 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -388,7 +388,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Fill path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 292 + startLine: 295 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -428,7 +428,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Effect path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 307 + startLine: 310 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -468,7 +468,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ThreeD path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 322 + startLine: 325 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -508,7 +508,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Font path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 337 + startLine: 340 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -548,7 +548,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: TextBody path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 352 + startLine: 355 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -588,7 +588,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Series path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 366 + startLine: 369 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -625,7 +625,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: VaryColors path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 370 + startLine: 373 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -665,7 +665,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Style path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 384 + startLine: 387 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -705,7 +705,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HasTitle path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 392 + startLine: 395 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -745,7 +745,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HasLegend path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 403 + startLine: 406 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -785,7 +785,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: View3D path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 413 + startLine: 416 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -825,7 +825,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DisplayBlanksAs path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 425 + startLine: 428 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -865,7 +865,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: RoundedCorners path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 440 + startLine: 443 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -905,7 +905,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ShowDataLabelsOverMaximum path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 456 + startLine: 459 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -945,7 +945,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ShowHiddenData path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs - startLine: 471 + startLine: 474 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -967,6 +967,80 @@ items: modifiers.vb: - Public - Overrides +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + id: XAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + langs: + - csharp + - vb + name: XAxis + nameWithType: ExcelChartEx.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + type: Property + source: + remote: + path: src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: XAxis + path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs + startLine: 488 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Drawing.Chart.ChartEx + summary: "\nThe X Axis\n" + example: [] + syntax: + content: public ExcelChartExAxis XAxis { get; } + parameters: [] + return: + type: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis + content.vb: Public ReadOnly Property XAxis As ExcelChartExAxis + overload: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis* + modifiers.csharp: + - public + - get + modifiers.vb: + - Public + - ReadOnly +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + id: YAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + langs: + - csharp + - vb + name: YAxis + nameWithType: ExcelChartEx.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + type: Property + source: + remote: + path: src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: YAxis + path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartEx.cs + startLine: 502 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Drawing.Chart.ChartEx + summary: "\nThe Y Axis\n" + example: [] + syntax: + content: public ExcelChartExAxis YAxis { get; } + parameters: [] + return: + type: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis + content.vb: Public ReadOnly Property YAxis As ExcelChartExAxis + overload: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis* + modifiers.csharp: + - public + - get + modifiers.vb: + - Public + - ReadOnly references: - uid: OfficeOpenXml.Drawing.Chart.ChartEx commentId: N:OfficeOpenXml.Drawing.Chart.ChartEx @@ -1053,18 +1127,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -2943,3 +3005,19 @@ references: name: ShowHiddenData nameWithType: ExcelChartEx.ShowHiddenData fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis* + commentId: Overload:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + name: XAxis + nameWithType: ExcelChartEx.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis + commentId: T:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx + name: ExcelChartExAxis + nameWithType: ExcelChartExAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis* + commentId: Overload:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + name: YAxis + nameWithType: ExcelChartEx.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.yml index 87f178ba5..93fbca5a6 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.yml @@ -7,6 +7,7 @@ items: children: - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.Position - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.PositionAlignment + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.Text langs: - csharp - vb @@ -37,7 +38,6 @@ items: - OfficeOpenXml.XmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChartTitle inheritedMembers: - - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Border - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Fill - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Font @@ -63,6 +63,44 @@ items: modifiers.vb: - Public - Class +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.Text + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.Text + id: Text + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle + langs: + - csharp + - vb + name: Text + nameWithType: ExcelChartExTitle.Text + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.Text + type: Property + source: + remote: + path: src/EPPlus/Drawing/Chart/ChartEx/ExcelChartExTitle.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: Text + path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartExTitle.cs + startLine: 26 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Drawing.Chart.ChartEx + syntax: + content: public override string Text { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Overrides Property Text As String + overridden: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text + overload: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.Text* + modifiers.csharp: + - public + - override + - get + - set + modifiers.vb: + - Public + - Overrides - uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.PositionAlignment commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.PositionAlignment id: PositionAlignment @@ -81,7 +119,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: PositionAlignment path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartExTitle.cs - startLine: 29 + startLine: 43 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -118,7 +156,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Position path: ../src/EPPlus/Drawing/Chart/ChartEx/ExcelChartExTitle.cs - startLine: 43 + startLine: 57 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart.ChartEx @@ -162,12 +200,6 @@ references: name: ExcelChartTitle nameWithType: ExcelChartTitle fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle -- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text - parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle - name: Text - nameWithType: ExcelChartTitle.Text - fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text - uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Border commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Border parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle @@ -535,6 +567,24 @@ references: name: OfficeOpenXml.Drawing.Chart nameWithType: OfficeOpenXml.Drawing.Chart fullName: OfficeOpenXml.Drawing.Chart +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: Text + nameWithType: ExcelChartTitle.Text + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.Text* + commentId: Overload:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.Text + name: Text + nameWithType: ExcelChartExTitle.Text + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.Text +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + name: String + nameWithType: String + fullName: System.String - uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.PositionAlignment* commentId: Overload:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle.PositionAlignment name: PositionAlignment diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelFunnelChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelFunnelChart.yml index 50f69613e..669f8945c 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelFunnelChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelFunnelChart.yml @@ -61,6 +61,8 @@ items: - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.RoundedCorners - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowDataLabelsOverMaximum - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -69,8 +71,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -327,6 +327,18 @@ references: name: ShowHiddenData nameWithType: ExcelChartEx.ShowHiddenData fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: XAxis + nameWithType: ExcelChartEx.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: YAxis + nameWithType: ExcelChartEx.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -375,18 +387,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelHistogramChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelHistogramChart.yml index f794479b4..d1ac06690 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelHistogramChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelHistogramChart.yml @@ -61,6 +61,8 @@ items: - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.RoundedCorners - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowDataLabelsOverMaximum - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -69,8 +71,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -358,6 +358,18 @@ references: name: ShowHiddenData nameWithType: ExcelChartEx.ShowHiddenData fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: XAxis + nameWithType: ExcelChartEx.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: YAxis + nameWithType: ExcelChartEx.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -406,18 +418,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelRegionMapChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelRegionMapChart.yml index 6a6b51da9..fb6fb800d 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelRegionMapChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelRegionMapChart.yml @@ -61,6 +61,8 @@ items: - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.RoundedCorners - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowDataLabelsOverMaximum - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -69,8 +71,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -358,6 +358,18 @@ references: name: ShowHiddenData nameWithType: ExcelChartEx.ShowHiddenData fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: XAxis + nameWithType: ExcelChartEx.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: YAxis + nameWithType: ExcelChartEx.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -406,18 +418,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelSunburstChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelSunburstChart.yml index d2d83bc4d..05355675b 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelSunburstChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelSunburstChart.yml @@ -61,6 +61,8 @@ items: - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.RoundedCorners - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowDataLabelsOverMaximum - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -69,8 +71,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -327,6 +327,18 @@ references: name: ShowHiddenData nameWithType: ExcelChartEx.ShowHiddenData fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: XAxis + nameWithType: ExcelChartEx.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: YAxis + nameWithType: ExcelChartEx.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -375,18 +387,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelTreemapChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelTreemapChart.yml index 04c301f14..19a30ad7b 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelTreemapChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelTreemapChart.yml @@ -61,6 +61,8 @@ items: - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.RoundedCorners - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowDataLabelsOverMaximum - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -69,8 +71,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -358,6 +358,18 @@ references: name: ShowHiddenData nameWithType: ExcelChartEx.ShowHiddenData fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: XAxis + nameWithType: ExcelChartEx.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: YAxis + nameWithType: ExcelChartEx.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -406,18 +418,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelWaterfallChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelWaterfallChart.yml index f7bd052a4..2f636823f 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelWaterfallChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.ExcelWaterfallChart.yml @@ -61,6 +61,8 @@ items: - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.RoundedCorners - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowDataLabelsOverMaximum - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -69,8 +71,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -358,6 +358,18 @@ references: name: ShowHiddenData nameWithType: ExcelChartEx.ShowHiddenData fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.ShowHiddenData +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: XAxis + nameWithType: ExcelChartEx.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx + name: YAxis + nameWithType: ExcelChartEx.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -406,18 +418,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.yml index c15474045..77a3605de 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ChartEx.yml @@ -163,6 +163,7 @@ references: fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartEx - uid: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis commentId: T:OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis + parent: OfficeOpenXml.Drawing.Chart.ChartEx name: ExcelChartExAxis nameWithType: ExcelChartExAxis fullName: OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExAxis diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelAreaChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelAreaChart.yml index ad6ea35ab..f838c309e 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelAreaChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelAreaChart.yml @@ -65,6 +65,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -73,9 +76,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -477,6 +477,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -525,24 +543,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelBarChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelBarChart.yml index 8dc42503b..daae108d9 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelBarChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelBarChart.yml @@ -69,6 +69,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -77,9 +80,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -629,6 +629,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -677,24 +695,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelBubbleChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelBubbleChart.yml index 5e7f7b010..7432da52b 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelBubbleChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelBubbleChart.yml @@ -69,6 +69,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -77,9 +80,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -629,6 +629,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -677,24 +695,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChart.yml index 2d44c71de..e20e6d24f 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChart.yml @@ -486,7 +486,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HasTitle path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 216 + startLine: 211 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -525,7 +525,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HasLegend path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 223 + startLine: 218 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -564,7 +564,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DeleteTitle path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 230 + startLine: 225 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -598,7 +598,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Series path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 234 + startLine: 229 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -637,24 +637,26 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Axis path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 238 + startLine: 233 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart summary: "\nAn array containg all axis of all Charttypes\n" example: [] syntax: - content: public ExcelChartAxis[] Axis { get; } + content: public virtual ExcelChartAxis[] Axis { get; } parameters: [] return: type: OfficeOpenXml.Drawing.Chart.ExcelChartAxis[] - content.vb: Public ReadOnly Property Axis As ExcelChartAxis() + content.vb: Public Overridable ReadOnly Property Axis As ExcelChartAxis() overload: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis* modifiers.csharp: - public + - virtual - get modifiers.vb: - Public + - Overridable - ReadOnly - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis @@ -674,25 +676,27 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: XAxis path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 248 + startLine: 243 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart summary: "\nThe X Axis\n" example: [] syntax: - content: public ExcelChartAxis XAxis { get; protected set; } + content: public virtual ExcelChartAxis XAxis { get; protected set; } parameters: [] return: type: OfficeOpenXml.Drawing.Chart.ExcelChartAxis - content.vb: Public Property XAxis As ExcelChartAxis + content.vb: Public Overridable Property XAxis As ExcelChartAxis overload: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis* modifiers.csharp: - public + - virtual - get - protected set modifiers.vb: - Public + - Overridable - Get - Protected Set - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis @@ -713,25 +717,27 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: YAxis path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 256 + startLine: 251 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart summary: "\nThe Y Axis\n" example: [] syntax: - content: public ExcelChartAxis YAxis { get; protected set; } + content: public virtual ExcelChartAxis YAxis { get; protected set; } parameters: [] return: type: OfficeOpenXml.Drawing.Chart.ExcelChartAxis - content.vb: Public Property YAxis As ExcelChartAxis + content.vb: Public Overridable Property YAxis As ExcelChartAxis overload: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis* modifiers.csharp: - public + - virtual - get - protected set modifiers.vb: - Public + - Overridable - Get - Protected Set - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Style @@ -752,7 +758,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Style path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 265 + startLine: 260 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -791,7 +797,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: PlotArea path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 274 + startLine: 269 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -830,7 +836,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Legend path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 282 + startLine: 277 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -869,7 +875,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Border path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 303 + startLine: 298 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -908,7 +914,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Fill path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 310 + startLine: 305 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -947,7 +953,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Effect path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 317 + startLine: 312 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -986,7 +992,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ThreeD path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 324 + startLine: 319 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1025,7 +1031,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Font path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 331 + startLine: 326 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1064,7 +1070,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: TextBody path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 338 + startLine: 333 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1103,7 +1109,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: PivotTableSource path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 346 + startLine: 341 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1142,7 +1148,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsType3D path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 423 + startLine: 418 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1177,7 +1183,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypeLine path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 431 + startLine: 426 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1212,7 +1218,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypeRadar path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 444 + startLine: 439 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1247,7 +1253,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypeScatter path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 455 + startLine: 450 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1282,7 +1288,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypeBubble path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 467 + startLine: 462 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1317,7 +1323,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypeArea path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 476 + startLine: 471 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1352,7 +1358,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypeSurface path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 489 + startLine: 484 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1387,7 +1393,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HasThirdAxis path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 500 + startLine: 495 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1422,7 +1428,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypeShape path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 511 + startLine: 506 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1457,7 +1463,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypePercentStacked path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 554 + startLine: 549 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1492,7 +1498,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypeStacked path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 574 + startLine: 569 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1527,7 +1533,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypeClustered path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 595 + startLine: 590 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1562,7 +1568,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypePieDoughnut path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 612 + startLine: 607 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1597,7 +1603,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypeDoughnut path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 620 + startLine: 615 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1632,7 +1638,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypePie path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 629 + startLine: 624 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1667,7 +1673,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IsTypeStock path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 642 + startLine: 637 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1702,7 +1708,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: VaryColors path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 669 + startLine: 664 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1741,7 +1747,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Floor path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 674 + startLine: 669 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1780,7 +1786,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: SideWall path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 679 + startLine: 674 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1819,7 +1825,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: BackWall path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 684 + startLine: 679 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1858,7 +1864,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: RoundedCorners path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 700 + startLine: 695 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1897,7 +1903,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ShowHiddenData path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 708 + startLine: 703 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1936,7 +1942,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DisplayBlanksAs path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 716 + startLine: 711 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -1975,7 +1981,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ShowDataLabelsOverMaximum path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 724 + startLine: 719 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -2014,7 +2020,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: View3D path: ../src/EPPlus/Drawing/Chart/ExcelChart.cs - startLine: 732 + startLine: 727 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.yml index 0979d71d1..8f16c7ec2 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.yml @@ -5,6 +5,7 @@ items: id: ExcelChartAxisStandard parent: OfficeOpenXml.Drawing.Chart children: + - OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.AddTitle(OfficeOpenXml.ExcelRangeBase) - OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.AxisPosition - OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.CrossBetween - OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.Crosses @@ -234,20 +235,17 @@ items: summary: "\nChart axis title\n" example: [] syntax: - content: public override ExcelChartTitle Title { get; } + content: public ExcelChartTitleStandard Title { get; } parameters: [] return: - type: OfficeOpenXml.Drawing.Chart.ExcelChartTitle - content.vb: Public Overrides ReadOnly Property Title As ExcelChartTitle - overridden: OfficeOpenXml.Drawing.Chart.ExcelChartAxis.Title + type: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + content.vb: Public ReadOnly Property Title As ExcelChartTitleStandard overload: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.Title* modifiers.csharp: - public - - override - get modifiers.vb: - Public - - Overrides - ReadOnly - uid: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.MinValue commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.MinValue @@ -267,7 +265,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: MinValue path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 171 + startLine: 170 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -307,7 +305,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: MaxValue path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 194 + startLine: 193 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -347,7 +345,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: LabelPosition path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 216 + startLine: 215 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -387,7 +385,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Crosses path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 247 + startLine: 246 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -427,7 +425,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: CrossBetween path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 280 + startLine: 279 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -467,7 +465,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: CrossesAt path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 313 + startLine: 312 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -507,7 +505,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Deleted path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 334 + startLine: 333 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -547,7 +545,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: TickLabelPosition path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 349 + startLine: 348 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -587,7 +585,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DisplayUnit path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 375 + startLine: 374 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -627,7 +625,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: MajorUnit path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 431 + startLine: 430 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -667,7 +665,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: MajorTimeUnit path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 469 + startLine: 468 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -707,7 +705,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: MinorUnit path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 501 + startLine: 500 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -747,7 +745,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: MinorTimeUnit path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 539 + startLine: 538 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -787,7 +785,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: LogBase path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 570 + startLine: 569 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -827,7 +825,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Orientation path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs - startLine: 597 + startLine: 596 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -849,6 +847,41 @@ items: modifiers.vb: - Public - Overrides +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.AddTitle(OfficeOpenXml.ExcelRangeBase) + commentId: M:OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.AddTitle(OfficeOpenXml.ExcelRangeBase) + id: AddTitle(OfficeOpenXml.ExcelRangeBase) + parent: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard + langs: + - csharp + - vb + name: AddTitle(ExcelRangeBase) + nameWithType: ExcelChartAxisStandard.AddTitle(ExcelRangeBase) + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.AddTitle(OfficeOpenXml.ExcelRangeBase) + type: Method + source: + remote: + path: src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: AddTitle + path: ../src/EPPlus/Drawing/Chart/ExcelChartAxisStandard.cs + startLine: 638 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Drawing.Chart + summary: "\nAdds the axis title and styles it according to the style selected in the StyleManager\n" + example: [] + syntax: + content: public void AddTitle(ExcelRangeBase linkedCell) + parameters: + - id: linkedCell + type: OfficeOpenXml.ExcelRangeBase + content.vb: Public Sub AddTitle(linkedCell As ExcelRangeBase) + overload: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.AddTitle* + modifiers.csharp: + - public + modifiers.vb: + - Public references: - uid: OfficeOpenXml.Drawing.Chart commentId: N:OfficeOpenXml.Drawing.Chart @@ -1504,23 +1537,17 @@ references: name: eAxisPosition nameWithType: eAxisPosition fullName: OfficeOpenXml.Drawing.Chart.eAxisPosition -- uid: OfficeOpenXml.Drawing.Chart.ExcelChartAxis.Title - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartAxis.Title - parent: OfficeOpenXml.Drawing.Chart.ExcelChartAxis - name: Title - nameWithType: ExcelChartAxis.Title - fullName: OfficeOpenXml.Drawing.Chart.ExcelChartAxis.Title - uid: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.Title* commentId: Overload:OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.Title name: Title nameWithType: ExcelChartAxisStandard.Title fullName: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.Title -- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle - commentId: T:OfficeOpenXml.Drawing.Chart.ExcelChartTitle +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + commentId: T:OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard parent: OfficeOpenXml.Drawing.Chart - name: ExcelChartTitle - nameWithType: ExcelChartTitle - fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: ExcelChartTitleStandard + nameWithType: ExcelChartTitleStandard + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard - uid: OfficeOpenXml.Drawing.Chart.ExcelChartAxis.MinValue commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartAxis.MinValue parent: OfficeOpenXml.Drawing.Chart.ExcelChartAxis @@ -1849,3 +1876,14 @@ references: name: eAxisOrientation nameWithType: eAxisOrientation fullName: OfficeOpenXml.Drawing.Chart.eAxisOrientation +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.AddTitle* + commentId: Overload:OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.AddTitle + name: AddTitle + nameWithType: ExcelChartAxisStandard.AddTitle + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard.AddTitle +- uid: OfficeOpenXml.ExcelRangeBase + commentId: T:OfficeOpenXml.ExcelRangeBase + parent: OfficeOpenXml + name: ExcelRangeBase + nameWithType: ExcelRangeBase + fullName: OfficeOpenXml.ExcelRangeBase diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml index 4dd90bea5..15dd94293 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartStandard.yml @@ -5,6 +5,7 @@ items: id: ExcelChartStandard parent: OfficeOpenXml.Drawing.Chart children: + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Border - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.DeleteTitle - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.DisplayBlanksAs @@ -26,6 +27,8 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Title - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis langs: - csharp - vb @@ -78,9 +81,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - OfficeOpenXml.Drawing.Chart.ExcelChart.Series - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -202,14 +202,14 @@ items: assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart - summary: "\nTitel of the chart\n" + summary: "\nTitle of the chart\n" example: [] syntax: - content: public ExcelChartTitle Title { get; } + content: public ExcelChartTitleStandard Title { get; } parameters: [] return: - type: OfficeOpenXml.Drawing.Chart.ExcelChartTitle - content.vb: Public ReadOnly Property Title As ExcelChartTitle + type: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + content.vb: Public ReadOnly Property Title As ExcelChartTitleStandard overload: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Title* modifiers.csharp: - public @@ -235,7 +235,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HasTitle path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 775 + startLine: 779 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -275,7 +275,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HasLegend path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 785 + startLine: 789 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -315,7 +315,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DeleteTitle path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 795 + startLine: 799 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -350,7 +350,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Style path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 803 + startLine: 807 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -390,7 +390,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: RoundedCorners path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 854 + startLine: 858 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -430,7 +430,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ShowHiddenData path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 869 + startLine: 873 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -470,7 +470,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DisplayBlanksAs path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 886 + startLine: 890 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -510,7 +510,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ShowDataLabelsOverMaximum path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 909 + startLine: 913 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -550,7 +550,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: PlotArea path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 965 + startLine: 969 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -590,7 +590,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Legend path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 979 + startLine: 983 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -627,7 +627,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Border path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 995 + startLine: 999 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -667,7 +667,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Fill path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 1010 + startLine: 1014 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -707,7 +707,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Effect path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 1025 + startLine: 1029 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -747,7 +747,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ThreeD path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 1040 + startLine: 1044 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -787,7 +787,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Font path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 1055 + startLine: 1059 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -827,7 +827,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: TextBody path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 1070 + startLine: 1074 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -867,7 +867,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: View3D path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 1085 + startLine: 1089 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -907,7 +907,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Grouping path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 1104 + startLine: 1108 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -944,7 +944,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: VaryColors path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs - startLine: 1119 + startLine: 1123 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -966,6 +966,115 @@ items: modifiers.vb: - Public - Overrides +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + id: Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + langs: + - csharp + - vb + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + type: Property + source: + remote: + path: src/EPPlus/Drawing/Chart/ExcelChartStandard.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: Axis + path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs + startLine: 1196 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Drawing.Chart + syntax: + content: public ExcelChartAxisStandard[] Axis { get; } + parameters: [] + return: + type: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard[] + content.vb: Public ReadOnly Property Axis As ExcelChartAxisStandard() + overload: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis* + modifiers.csharp: + - public + - get + modifiers.vb: + - Public + - ReadOnly +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + id: XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + langs: + - csharp + - vb + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + type: Property + source: + remote: + path: src/EPPlus/Drawing/Chart/ExcelChartStandard.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: XAxis + path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs + startLine: 1210 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Drawing.Chart + summary: "\nThe X Axis\n" + example: [] + syntax: + content: public ExcelChartAxisStandard XAxis { get; } + parameters: [] + return: + type: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard + content.vb: Public ReadOnly Property XAxis As ExcelChartAxisStandard + overload: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis* + modifiers.csharp: + - public + - get + modifiers.vb: + - Public + - ReadOnly +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + id: YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + langs: + - csharp + - vb + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + type: Property + source: + remote: + path: src/EPPlus/Drawing/Chart/ExcelChartStandard.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: YAxis + path: ../src/EPPlus/Drawing/Chart/ExcelChartStandard.cs + startLine: 1224 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Drawing.Chart + summary: "\nThe Y Axis\n" + example: [] + syntax: + content: public ExcelChartAxisStandard YAxis { get; } + parameters: [] + return: + type: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard + content.vb: Public ReadOnly Property YAxis As ExcelChartAxisStandard + overload: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis* + modifiers.csharp: + - public + - get + modifiers.vb: + - Public + - ReadOnly references: - uid: OfficeOpenXml.Drawing.Chart commentId: N:OfficeOpenXml.Drawing.Chart @@ -1058,24 +1167,6 @@ references: name: Series nameWithType: ExcelChart.Series fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Series -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -2543,12 +2634,12 @@ references: name: Title nameWithType: ExcelChartStandard.Title fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Title -- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle - commentId: T:OfficeOpenXml.Drawing.Chart.ExcelChartTitle +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + commentId: T:OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard parent: OfficeOpenXml.Drawing.Chart - name: ExcelChartTitle - nameWithType: ExcelChartTitle - fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: ExcelChartTitleStandard + nameWithType: ExcelChartTitleStandard + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.HasTitle commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.HasTitle parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -2862,3 +2953,48 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis* + commentId: Overload:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard[] + isExternal: true + name: ExcelChartAxisStandard[] + nameWithType: ExcelChartAxisStandard[] + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard[] + nameWithType.vb: ExcelChartAxisStandard() + fullName.vb: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard() + name.vb: ExcelChartAxisStandard() + spec.csharp: + - uid: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard + name: ExcelChartAxisStandard + nameWithType: ExcelChartAxisStandard + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard + - name: '[]' + nameWithType: '[]' + fullName: '[]' + spec.vb: + - uid: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard + name: ExcelChartAxisStandard + nameWithType: ExcelChartAxisStandard + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard + - name: () + nameWithType: () + fullName: () +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis* + commentId: Overload:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard + commentId: T:OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard + parent: OfficeOpenXml.Drawing.Chart + name: ExcelChartAxisStandard + nameWithType: ExcelChartAxisStandard + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis* + commentId: Overload:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartTitle.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartTitle.yml index 574b0295b..de7a10a41 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartTitle.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartTitle.yml @@ -39,15 +39,16 @@ items: summary: "\nThe title of a chart\n" example: [] syntax: - content: 'public class ExcelChartTitle : XmlHelper' + content: 'public abstract class ExcelChartTitle : XmlHelper' content.vb: >- - Public Class ExcelChartTitle + Public MustInherit Class ExcelChartTitle Inherits XmlHelper inheritance: - System.Object - OfficeOpenXml.XmlHelper derivedClasses: - OfficeOpenXml.Drawing.Chart.ChartEx.ExcelChartExTitle + - OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) @@ -58,9 +59,11 @@ items: - System.Object.ToString modifiers.csharp: - public + - abstract - class modifiers.vb: - Public + - MustInherit - Class - uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text @@ -87,18 +90,20 @@ items: summary: "\nThe text\n" example: [] syntax: - content: public string Text { get; set; } + content: public abstract string Text { get; set; } parameters: [] return: type: System.String - content.vb: Public Property Text As String + content.vb: Public MustOverride Property Text As String overload: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text* modifiers.csharp: - public + - abstract - get - set modifiers.vb: - Public + - MustOverride - uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Border commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Border id: Border @@ -117,7 +122,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Border path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 96 + startLine: 88 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -154,7 +159,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Fill path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 111 + startLine: 103 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -191,7 +196,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Font path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 127 + startLine: 119 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -228,7 +233,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: TextBody path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 146 + startLine: 138 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -265,7 +270,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Effect path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 161 + startLine: 153 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -302,7 +307,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ThreeD path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 176 + startLine: 168 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -339,7 +344,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: RichText path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 196 + startLine: 188 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -376,7 +381,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Overlay path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 231 + startLine: 223 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -413,7 +418,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: AnchorCtr path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 259 + startLine: 251 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -450,7 +455,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Anchor path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 273 + startLine: 265 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -487,7 +492,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: TextVertical path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 288 + startLine: 280 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart @@ -524,7 +529,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Rotation path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs - startLine: 302 + startLine: 294 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Chart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.yml new file mode 100644 index 000000000..586d497ad --- /dev/null +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.yml @@ -0,0 +1,553 @@ +### YamlMime:ManagedReference +items: +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + commentId: T:OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + id: ExcelChartTitleStandard + parent: OfficeOpenXml.Drawing.Chart + children: + - OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.LinkedCell + - OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.Text + langs: + - csharp + - vb + name: ExcelChartTitleStandard + nameWithType: ExcelChartTitleStandard + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + type: Class + source: + remote: + path: src/EPPlus/Drawing/Chart/ExcelChartTitle.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: ExcelChartTitleStandard + path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs + startLine: 343 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Drawing.Chart + syntax: + content: 'public class ExcelChartTitleStandard : ExcelChartTitle' + content.vb: >- + Public Class ExcelChartTitleStandard + Inherits ExcelChartTitle + inheritance: + - System.Object + - OfficeOpenXml.XmlHelper + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle + inheritedMembers: + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Border + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Fill + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Font + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.TextBody + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Effect + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.ThreeD + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.RichText + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Overlay + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.AnchorCtr + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Anchor + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.TextVertical + - OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Rotation + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString + modifiers.csharp: + - public + - class + modifiers.vb: + - Public + - Class +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.Text + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.Text + id: Text + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + langs: + - csharp + - vb + name: Text + nameWithType: ExcelChartTitleStandard.Text + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.Text + type: Property + source: + remote: + path: src/EPPlus/Drawing/Chart/ExcelChartTitle.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: Text + path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs + startLine: 350 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Drawing.Chart + syntax: + content: public override string Text { get; set; } + parameters: [] + return: + type: System.String + content.vb: Public Overrides Property Text As String + overridden: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text + overload: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.Text* + modifiers.csharp: + - public + - override + - get + - set + modifiers.vb: + - Public + - Overrides +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.LinkedCell + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.LinkedCell + id: LinkedCell + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + langs: + - csharp + - vb + name: LinkedCell + nameWithType: ExcelChartTitleStandard.LinkedCell + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.LinkedCell + type: Property + source: + remote: + path: src/EPPlus/Drawing/Chart/ExcelChartTitle.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: LinkedCell + path: ../src/EPPlus/Drawing/Chart/ExcelChartTitle.cs + startLine: 374 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Drawing.Chart + summary: "\nA reference to a cell used as the title text\n" + example: [] + syntax: + content: public ExcelRangeBase LinkedCell { get; set; } + parameters: [] + return: + type: OfficeOpenXml.ExcelRangeBase + content.vb: Public Property LinkedCell As ExcelRangeBase + overload: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.LinkedCell* + modifiers.csharp: + - public + - get + - set + modifiers.vb: + - Public +references: +- uid: OfficeOpenXml.Drawing.Chart + commentId: N:OfficeOpenXml.Drawing.Chart + name: OfficeOpenXml.Drawing.Chart + nameWithType: OfficeOpenXml.Drawing.Chart + fullName: OfficeOpenXml.Drawing.Chart +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + name: Object + nameWithType: Object + fullName: System.Object +- uid: OfficeOpenXml.XmlHelper + commentId: T:OfficeOpenXml.XmlHelper + parent: OfficeOpenXml + name: XmlHelper + nameWithType: XmlHelper + fullName: OfficeOpenXml.XmlHelper +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + commentId: T:OfficeOpenXml.Drawing.Chart.ExcelChartTitle + parent: OfficeOpenXml.Drawing.Chart + name: ExcelChartTitle + nameWithType: ExcelChartTitle + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Border + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Border + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: Border + nameWithType: ExcelChartTitle.Border + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Border +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Fill + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Fill + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: Fill + nameWithType: ExcelChartTitle.Fill + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Fill +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Font + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Font + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: Font + nameWithType: ExcelChartTitle.Font + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Font +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.TextBody + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.TextBody + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: TextBody + nameWithType: ExcelChartTitle.TextBody + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.TextBody +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Effect + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Effect + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: Effect + nameWithType: ExcelChartTitle.Effect + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Effect +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.ThreeD + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.ThreeD + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: ThreeD + nameWithType: ExcelChartTitle.ThreeD + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.ThreeD +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.RichText + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.RichText + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: RichText + nameWithType: ExcelChartTitle.RichText + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.RichText +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Overlay + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Overlay + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: Overlay + nameWithType: ExcelChartTitle.Overlay + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Overlay +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.AnchorCtr + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.AnchorCtr + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: AnchorCtr + nameWithType: ExcelChartTitle.AnchorCtr + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.AnchorCtr +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Anchor + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Anchor + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: Anchor + nameWithType: ExcelChartTitle.Anchor + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Anchor +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.TextVertical + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.TextVertical + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: TextVertical + nameWithType: ExcelChartTitle.TextVertical + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.TextVertical +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Rotation + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Rotation + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: Rotation + nameWithType: ExcelChartTitle.Rotation + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Rotation +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + name: Equals(Object) + nameWithType: Object.Equals(Object) + fullName: System.Object.Equals(System.Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + nameWithType: Object.Equals + fullName: System.Object.Equals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + nameWithType: Object.Equals + fullName: System.Object.Equals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + name: Equals(Object, Object) + nameWithType: Object.Equals(Object, Object) + fullName: System.Object.Equals(System.Object, System.Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + nameWithType: Object.Equals + fullName: System.Object.Equals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + nameWithType: Object.Equals + fullName: System.Object.Equals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + name: GetHashCode() + nameWithType: Object.GetHashCode() + fullName: System.Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + nameWithType: Object.GetHashCode + fullName: System.Object.GetHashCode + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + nameWithType: Object.GetHashCode + fullName: System.Object.GetHashCode + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + name: GetType() + nameWithType: Object.GetType() + fullName: System.Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + nameWithType: Object.GetType + fullName: System.Object.GetType + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + nameWithType: Object.GetType + fullName: System.Object.GetType + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + name: MemberwiseClone() + nameWithType: Object.MemberwiseClone() + fullName: System.Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + nameWithType: Object.MemberwiseClone + fullName: System.Object.MemberwiseClone + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + nameWithType: Object.MemberwiseClone + fullName: System.Object.MemberwiseClone + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + name: ReferenceEquals(Object, Object) + nameWithType: Object.ReferenceEquals(Object, Object) + fullName: System.Object.ReferenceEquals(System.Object, System.Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + nameWithType: Object.ReferenceEquals + fullName: System.Object.ReferenceEquals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + nameWithType: Object.ReferenceEquals + fullName: System.Object.ReferenceEquals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + name: ToString() + nameWithType: Object.ToString() + fullName: System.Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + nameWithType: Object.ToString + fullName: System.Object.ToString + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + nameWithType: Object.ToString + fullName: System.Object.ToString + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) +- uid: System + commentId: N:System + isExternal: true + name: System + nameWithType: System + fullName: System +- uid: OfficeOpenXml + commentId: N:OfficeOpenXml + name: OfficeOpenXml + nameWithType: OfficeOpenXml + fullName: OfficeOpenXml +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text + parent: OfficeOpenXml.Drawing.Chart.ExcelChartTitle + name: Text + nameWithType: ExcelChartTitle.Text + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle.Text +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.Text* + commentId: Overload:OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.Text + name: Text + nameWithType: ExcelChartTitleStandard.Text + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.Text +- uid: System.String + commentId: T:System.String + parent: System + isExternal: true + name: String + nameWithType: String + fullName: System.String +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.LinkedCell* + commentId: Overload:OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.LinkedCell + name: LinkedCell + nameWithType: ExcelChartTitleStandard.LinkedCell + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard.LinkedCell +- uid: OfficeOpenXml.ExcelRangeBase + commentId: T:OfficeOpenXml.ExcelRangeBase + parent: OfficeOpenXml + name: ExcelRangeBase + nameWithType: ExcelRangeBase + fullName: OfficeOpenXml.ExcelRangeBase diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelDoughnutChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelDoughnutChart.yml index f9ee586ed..c641e37cc 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelDoughnutChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelDoughnutChart.yml @@ -68,6 +68,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -76,9 +79,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -461,6 +461,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -509,24 +527,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelLineChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelLineChart.yml index b9ab61fa9..0805024c0 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelLineChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelLineChart.yml @@ -76,6 +76,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -84,9 +87,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -548,6 +548,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -596,24 +614,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelOfPieChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelOfPieChart.yml index 15b5bb5b5..2b0536625 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelOfPieChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelOfPieChart.yml @@ -68,6 +68,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -76,9 +79,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -461,6 +461,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -509,24 +527,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelPieChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelPieChart.yml index 65327006c..68dff21e3 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelPieChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelPieChart.yml @@ -68,6 +68,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -76,9 +79,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -478,6 +478,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -526,24 +544,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelRadarChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelRadarChart.yml index 422c8431f..c8948af31 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelRadarChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelRadarChart.yml @@ -66,6 +66,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -74,9 +77,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -513,6 +513,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -561,24 +579,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelScatterChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelScatterChart.yml index b167dbd36..656413cd7 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelScatterChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelScatterChart.yml @@ -67,6 +67,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -75,9 +78,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -553,6 +553,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -601,24 +619,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelStandardChartWithLines.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelStandardChartWithLines.yml index 27b5db6a3..bb1f1a83a 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelStandardChartWithLines.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelStandardChartWithLines.yml @@ -78,6 +78,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -86,9 +89,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -856,6 +856,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -904,24 +922,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelStockChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelStockChart.yml index fbe921998..f267493ea 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelStockChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelStockChart.yml @@ -76,6 +76,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -84,9 +87,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -579,6 +579,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -627,24 +645,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelSurfaceChart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelSurfaceChart.yml index 46f2dcec6..7ebe03dfd 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.ExcelSurfaceChart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.ExcelSurfaceChart.yml @@ -63,6 +63,9 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.View3D - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Grouping - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + - OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper - OfficeOpenXml.Drawing.Chart.ExcelChart.StyleManager - OfficeOpenXml.Drawing.Chart.ExcelChart.UseSecondaryAxis @@ -71,9 +74,6 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChart.DrawingType - OfficeOpenXml.Drawing.Chart.ExcelChart.ChartType - OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode - - OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - - OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - - OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource - OfficeOpenXml.Drawing.Chart.ExcelChart.IsType3D - OfficeOpenXml.Drawing.Chart.ExcelChart.IsTypeLine @@ -428,6 +428,24 @@ references: name: VaryColors nameWithType: ExcelChartStandard.VaryColors fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.VaryColors +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: Axis + nameWithType: ExcelChartStandard.Axis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.Axis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: XAxis + nameWithType: ExcelChartStandard.XAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.XAxis +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis + parent: OfficeOpenXml.Drawing.Chart.ExcelChartStandard + name: YAxis + nameWithType: ExcelChartStandard.YAxis + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartStandard.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper commentId: F:OfficeOpenXml.Drawing.Chart.ExcelChart._chartXmlHelper parent: OfficeOpenXml.Drawing.Chart.ExcelChart @@ -476,24 +494,6 @@ references: name: _chartNode nameWithType: ExcelChart._chartNode fullName: OfficeOpenXml.Drawing.Chart.ExcelChart._chartNode -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.Axis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: Axis - nameWithType: ExcelChart.Axis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.Axis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: XAxis - nameWithType: ExcelChart.XAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.XAxis -- uid: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - parent: OfficeOpenXml.Drawing.Chart.ExcelChart - name: YAxis - nameWithType: ExcelChart.YAxis - fullName: OfficeOpenXml.Drawing.Chart.ExcelChart.YAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource commentId: P:OfficeOpenXml.Drawing.Chart.ExcelChart.PivotTableSource parent: OfficeOpenXml.Drawing.Chart.ExcelChart diff --git a/docs/api/OfficeOpenXml.Drawing.Chart.yml b/docs/api/OfficeOpenXml.Drawing.Chart.yml index 4cd1fdf50..36d03cfee 100644 --- a/docs/api/OfficeOpenXml.Drawing.Chart.yml +++ b/docs/api/OfficeOpenXml.Drawing.Chart.yml @@ -73,6 +73,7 @@ items: - OfficeOpenXml.Drawing.Chart.ExcelChartStyleItem - OfficeOpenXml.Drawing.Chart.ExcelChartSurface - OfficeOpenXml.Drawing.Chart.ExcelChartTitle + - OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard - OfficeOpenXml.Drawing.Chart.ExcelChartTrendline - OfficeOpenXml.Drawing.Chart.ExcelChartTrendlineCollection - OfficeOpenXml.Drawing.Chart.ExcelChartTrendlineLabel @@ -372,6 +373,7 @@ references: fullName: OfficeOpenXml.Drawing.Chart.ExcelChartAxis - uid: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard commentId: T:OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard + parent: OfficeOpenXml.Drawing.Chart name: ExcelChartAxisStandard nameWithType: ExcelChartAxisStandard fullName: OfficeOpenXml.Drawing.Chart.ExcelChartAxisStandard @@ -548,6 +550,12 @@ references: name: ExcelChartTitle nameWithType: ExcelChartTitle fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitle +- uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + commentId: T:OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + parent: OfficeOpenXml.Drawing.Chart + name: ExcelChartTitleStandard + nameWithType: ExcelChartTitleStandard + fullName: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard - uid: OfficeOpenXml.Drawing.Chart.ExcelChartTrendline commentId: T:OfficeOpenXml.Drawing.Chart.ExcelChartTrendline parent: OfficeOpenXml.Drawing.Chart diff --git a/docs/api/OfficeOpenXml.Drawing.ExcelDrawings.yml b/docs/api/OfficeOpenXml.Drawing.ExcelDrawings.yml index c7b0385be..c2a55de19 100644 --- a/docs/api/OfficeOpenXml.Drawing.ExcelDrawings.yml +++ b/docs/api/OfficeOpenXml.Drawing.ExcelDrawings.yml @@ -3472,7 +3472,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Dispose path: ../src/EPPlus/Drawing/ExcelDrawings.cs - startLine: 1664 + startLine: 1670 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing diff --git a/docs/api/OfficeOpenXml.Drawing.ExcelGroupShape.yml b/docs/api/OfficeOpenXml.Drawing.ExcelGroupShape.yml index a44d0e487..1da431adc 100644 --- a/docs/api/OfficeOpenXml.Drawing.ExcelGroupShape.yml +++ b/docs/api/OfficeOpenXml.Drawing.ExcelGroupShape.yml @@ -139,7 +139,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DrawingType path: ../src/EPPlus/Drawing/ExcelGroupShape.cs - startLine: 416 + startLine: 442 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing diff --git a/docs/api/OfficeOpenXml.Drawing.Theme.ExcelThemeManager.yml b/docs/api/OfficeOpenXml.Drawing.Theme.ExcelThemeManager.yml index e58a74988..d783b5145 100644 --- a/docs/api/OfficeOpenXml.Drawing.Theme.ExcelThemeManager.yml +++ b/docs/api/OfficeOpenXml.Drawing.Theme.ExcelThemeManager.yml @@ -137,7 +137,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DeleteCurrentTheme path: ../src/EPPlus/Drawing/Theme/ExcelThemeManager.cs - startLine: 78 + startLine: 86 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Theme @@ -169,7 +169,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Load path: ../src/EPPlus/Drawing/Theme/ExcelThemeManager.cs - startLine: 92 + startLine: 100 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Theme @@ -205,7 +205,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Load path: ../src/EPPlus/Drawing/Theme/ExcelThemeManager.cs - startLine: 109 + startLine: 117 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Theme @@ -241,7 +241,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Load path: ../src/EPPlus/Drawing/Theme/ExcelThemeManager.cs - startLine: 125 + startLine: 133 assemblies: - EPPlus namespace: OfficeOpenXml.Drawing.Theme diff --git a/docs/api/OfficeOpenXml.ExcelRangeColumn.yml b/docs/api/OfficeOpenXml.ExcelRangeColumn.yml index a38bc1557..0aea486d2 100644 --- a/docs/api/OfficeOpenXml.ExcelRangeColumn.yml +++ b/docs/api/OfficeOpenXml.ExcelRangeColumn.yml @@ -356,10 +356,10 @@ items: parameters: - id: level type: System.Int32 - description: Expand all rows with a Equal or Greater than this number. + description: Expands all rows with a Equal or Greater than this number. - id: collapseChildren type: System.Boolean - description: Collapse all children with a greater than level + description: Collapses all children with a greater than level content.vb: Public Sub SetVisibleOutlineLevel(level As Integer, collapseChildren As Boolean = True) overload: OfficeOpenXml.ExcelRangeColumn.SetVisibleOutlineLevel* modifiers.csharp: diff --git a/docs/api/OfficeOpenXml.ExcelRow.yml b/docs/api/OfficeOpenXml.ExcelRow.yml index ea6b81ecd..9fcac181c 100644 --- a/docs/api/OfficeOpenXml.ExcelRow.yml +++ b/docs/api/OfficeOpenXml.ExcelRow.yml @@ -196,7 +196,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: CustomHeight path: ../src/EPPlus/ExcelRow.cs - startLine: 149 + startLine: 150 assemblies: - EPPlus namespace: OfficeOpenXml @@ -233,7 +233,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: StyleName path: ../src/EPPlus/ExcelRow.cs - startLine: 175 + startLine: 176 assemblies: - EPPlus namespace: OfficeOpenXml @@ -270,7 +270,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: StyleID path: ../src/EPPlus/ExcelRow.cs - startLine: 190 + startLine: 191 assemblies: - EPPlus namespace: OfficeOpenXml @@ -307,7 +307,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Row path: ../src/EPPlus/ExcelRow.cs - startLine: 205 + startLine: 206 assemblies: - EPPlus namespace: OfficeOpenXml @@ -344,7 +344,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Collapsed path: ../src/EPPlus/ExcelRow.cs - startLine: 213 + startLine: 214 assemblies: - EPPlus namespace: OfficeOpenXml @@ -381,7 +381,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: OutlineLevel path: ../src/EPPlus/ExcelRow.cs - startLine: 236 + startLine: 237 assemblies: - EPPlus namespace: OfficeOpenXml @@ -418,7 +418,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Phonetic path: ../src/EPPlus/ExcelRow.cs - startLine: 274 + startLine: 275 assemblies: - EPPlus namespace: OfficeOpenXml @@ -455,7 +455,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Style path: ../src/EPPlus/ExcelRow.cs - startLine: 298 + startLine: 299 assemblies: - EPPlus namespace: OfficeOpenXml @@ -492,7 +492,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: PageBreak path: ../src/EPPlus/ExcelRow.cs - startLine: 308 + startLine: 309 assemblies: - EPPlus namespace: OfficeOpenXml @@ -529,7 +529,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Merged path: ../src/EPPlus/ExcelRow.cs - startLine: 331 + startLine: 332 assemblies: - EPPlus namespace: OfficeOpenXml diff --git a/docs/api/OfficeOpenXml.ExcelWorksheet.yml b/docs/api/OfficeOpenXml.ExcelWorksheet.yml index 90c3c4f11..1f45f7fb9 100644 --- a/docs/api/OfficeOpenXml.ExcelWorksheet.yml +++ b/docs/api/OfficeOpenXml.ExcelWorksheet.yml @@ -267,7 +267,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Index path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 578 + startLine: 579 assemblies: - EPPlus namespace: OfficeOpenXml @@ -304,7 +304,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: AutoFilterAddress path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 590 + startLine: 591 assemblies: - EPPlus namespace: OfficeOpenXml @@ -341,7 +341,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: AutoFilter path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 622 + startLine: 623 assemblies: - EPPlus namespace: OfficeOpenXml @@ -378,7 +378,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: SortState path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 642 + startLine: 643 assemblies: - EPPlus namespace: OfficeOpenXml @@ -415,7 +415,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: View path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 672 + startLine: 673 assemblies: - EPPlus namespace: OfficeOpenXml @@ -452,7 +452,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Name path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 693 + startLine: 694 assemblies: - EPPlus namespace: OfficeOpenXml @@ -489,7 +489,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Names path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 760 + startLine: 761 assemblies: - EPPlus namespace: OfficeOpenXml @@ -526,7 +526,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Hidden path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 771 + startLine: 772 assemblies: - EPPlus namespace: OfficeOpenXml @@ -563,7 +563,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DefaultRowHeight path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 903 + startLine: 904 assemblies: - EPPlus namespace: OfficeOpenXml @@ -600,7 +600,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: RowZeroHeight path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 942 + startLine: 943 assemblies: - EPPlus namespace: OfficeOpenXml @@ -637,7 +637,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: CustomHeight path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 979 + startLine: 980 assemblies: - EPPlus namespace: OfficeOpenXml @@ -674,7 +674,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DefaultColWidth path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 993 + startLine: 994 assemblies: - EPPlus namespace: OfficeOpenXml @@ -711,7 +711,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: OutLineSummaryBelow path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 1029 + startLine: 1030 assemblies: - EPPlus namespace: OfficeOpenXml @@ -748,7 +748,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: OutLineSummaryRight path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 1046 + startLine: 1047 assemblies: - EPPlus namespace: OfficeOpenXml @@ -785,7 +785,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: OutLineApplyStyle path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 1063 + startLine: 1064 assemblies: - EPPlus namespace: OfficeOpenXml @@ -822,7 +822,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: TabColor path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 1080 + startLine: 1081 assemblies: - EPPlus namespace: OfficeOpenXml @@ -859,7 +859,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: CodeModule path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 1119 + startLine: 1120 assemblies: - EPPlus namespace: OfficeOpenXml @@ -896,7 +896,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: WorksheetXml path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 1138 + startLine: 1139 assemblies: - EPPlus namespace: OfficeOpenXml @@ -933,7 +933,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Comments path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 1164 + startLine: 1165 assemblies: - EPPlus namespace: OfficeOpenXml @@ -970,7 +970,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ThreadedComments path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 1178 + startLine: 1179 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1007,7 +1007,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HeaderFooter path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2099 + startLine: 2105 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1045,7 +1045,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: PrinterSettings path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2119 + startLine: 2125 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1082,7 +1082,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Cells path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2159 + startLine: 2165 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1119,7 +1119,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: SelectedRange path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2170 + startLine: 2176 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1156,7 +1156,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: MergedCells path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2182 + startLine: 2188 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1193,7 +1193,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Row path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2195 + startLine: 2201 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1232,7 +1232,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Column path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2210 + startLine: 2216 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1271,7 +1271,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ToString path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2256 + startLine: 2262 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1309,7 +1309,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Select path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2280 + startLine: 2286 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1341,7 +1341,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Select path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2289 + startLine: 2295 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1377,7 +1377,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Select path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2298 + startLine: 2304 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1416,7 +1416,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Select path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2317 + startLine: 2323 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1452,7 +1452,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Select path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2327 + startLine: 2333 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1491,7 +1491,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: InsertRow path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2354 + startLine: 2360 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1530,7 +1530,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: InsertRow path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2365 + startLine: 2371 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1572,7 +1572,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: InsertColumn path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2375 + startLine: 2381 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1611,7 +1611,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: InsertColumn path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2386 + startLine: 2392 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1653,7 +1653,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DeleteRow path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2396 + startLine: 2402 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1689,7 +1689,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DeleteRow path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2405 + startLine: 2411 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1728,7 +1728,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DeleteRow path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2416 + startLine: 2422 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1782,7 +1782,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DeleteColumn path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2427 + startLine: 2433 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1818,7 +1818,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DeleteColumn path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2436 + startLine: 2442 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1857,7 +1857,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: GetValue path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2447 + startLine: 2453 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1899,7 +1899,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: GetValue path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2476 + startLine: 2482 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1947,7 +1947,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: SetValue path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2501 + startLine: 2507 assemblies: - EPPlus namespace: OfficeOpenXml @@ -1989,7 +1989,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: SetValue path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2515 + startLine: 2521 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2028,7 +2028,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: GetMergeCellId path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 2535 + startLine: 2541 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2070,7 +2070,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Dimension path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3710 + startLine: 3716 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2107,7 +2107,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Protection path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3732 + startLine: 3738 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2144,7 +2144,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ProtectedRanges path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3748 + startLine: 3754 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2181,7 +2181,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Drawings path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3774 + startLine: 3780 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2218,7 +2218,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: SparklineGroups path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3797 + startLine: 3803 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2255,7 +2255,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Tables path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3813 + startLine: 3819 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2292,7 +2292,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: PivotTables path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3830 + startLine: 3836 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2329,7 +2329,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ConditionalFormatting path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3856 + startLine: 3862 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2369,7 +2369,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: DataValidations path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3874 + startLine: 3880 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2409,7 +2409,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: IgnoredErrors path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3890 + startLine: 3896 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2446,7 +2446,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: BackgroundImage path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3911 + startLine: 3917 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2483,7 +2483,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Workbook path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 3925 + startLine: 3931 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2520,7 +2520,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Dispose path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 4034 + startLine: 4040 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2554,7 +2554,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Equals path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 4098 + startLine: 4104 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2598,7 +2598,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: GetHashCode path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 4107 + startLine: 4113 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2639,7 +2639,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Rows path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 4126 + startLine: 4132 assemblies: - EPPlus namespace: OfficeOpenXml @@ -2676,7 +2676,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Columns path: ../src/EPPlus/ExcelWorksheet.cs - startLine: 4136 + startLine: 4142 assemblies: - EPPlus namespace: OfficeOpenXml diff --git a/docs/api/OfficeOpenXml.FormulaParsing.ExpressionGraph.FunctionCompilers.FunctionCompilerFactory.yml b/docs/api/OfficeOpenXml.FormulaParsing.ExpressionGraph.FunctionCompilers.FunctionCompilerFactory.yml index e85cc8c17..8dc142c08 100644 --- a/docs/api/OfficeOpenXml.FormulaParsing.ExpressionGraph.FunctionCompilers.FunctionCompilerFactory.yml +++ b/docs/api/OfficeOpenXml.FormulaParsing.ExpressionGraph.FunctionCompilers.FunctionCompilerFactory.yml @@ -97,7 +97,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Create path: ../src/EPPlus/FormulaParsing/ExpressionGraph/FunctionCompilers/FunctionCompilerFactory.cs - startLine: 60 + startLine: 61 assemblies: - EPPlus namespace: OfficeOpenXml.FormulaParsing.ExpressionGraph.FunctionCompilers diff --git a/docs/api/OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.yml b/docs/api/OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.yml index f45b153cf..1c140bce0 100644 --- a/docs/api/OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.yml +++ b/docs/api/OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.yml @@ -5,10 +5,7 @@ items: id: RegexConstants parent: OfficeOpenXml.FormulaParsing.Utilities children: - - OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Boolean - - OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Decimal - OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.ExcelAddress - - OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Integer - OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.SingleCellAddress langs: - csharp @@ -120,111 +117,6 @@ items: modifiers.vb: - Public - Const -- uid: OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Boolean - commentId: F:OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Boolean - id: Boolean - parent: OfficeOpenXml.FormulaParsing.Utilities.RegexConstants - langs: - - csharp - - vb - name: Boolean - nameWithType: RegexConstants.Boolean - fullName: OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Boolean - type: Field - source: - remote: - path: src/EPPlus/FormulaParsing/Utilities/RegexConstants.cs - branch: develop - repo: https://github.com/EPPlusSoftware/EPPlus.git - id: Boolean - path: ../src/EPPlus/FormulaParsing/Utilities/RegexConstants.cs - startLine: 36 - assemblies: - - EPPlus - namespace: OfficeOpenXml.FormulaParsing.Utilities - summary: "\nRegex constant matching a boolean expression (true or false)\n" - example: [] - syntax: - content: public const string Boolean = "^(true|false)$" - return: - type: System.String - content.vb: Public Const Boolean As String = "^(true|false)$" - modifiers.csharp: - - public - - const - modifiers.vb: - - Public - - Const -- uid: OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Decimal - commentId: F:OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Decimal - id: Decimal - parent: OfficeOpenXml.FormulaParsing.Utilities.RegexConstants - langs: - - csharp - - vb - name: Decimal - nameWithType: RegexConstants.Decimal - fullName: OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Decimal - type: Field - source: - remote: - path: src/EPPlus/FormulaParsing/Utilities/RegexConstants.cs - branch: develop - repo: https://github.com/EPPlusSoftware/EPPlus.git - id: Decimal - path: ../src/EPPlus/FormulaParsing/Utilities/RegexConstants.cs - startLine: 40 - assemblies: - - EPPlus - namespace: OfficeOpenXml.FormulaParsing.Utilities - summary: "\nRegex constant matching a decimal expression\n" - example: [] - syntax: - content: public const string Decimal = "^[0-9]+\\.[0-9]+$" - return: - type: System.String - content.vb: Public Const Decimal As String = "^[0-9]+\.[0-9]+$" - modifiers.csharp: - - public - - const - modifiers.vb: - - Public - - Const -- uid: OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Integer - commentId: F:OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Integer - id: Integer - parent: OfficeOpenXml.FormulaParsing.Utilities.RegexConstants - langs: - - csharp - - vb - name: Integer - nameWithType: RegexConstants.Integer - fullName: OfficeOpenXml.FormulaParsing.Utilities.RegexConstants.Integer - type: Field - source: - remote: - path: src/EPPlus/FormulaParsing/Utilities/RegexConstants.cs - branch: develop - repo: https://github.com/EPPlusSoftware/EPPlus.git - id: Integer - path: ../src/EPPlus/FormulaParsing/Utilities/RegexConstants.cs - startLine: 44 - assemblies: - - EPPlus - namespace: OfficeOpenXml.FormulaParsing.Utilities - summary: "\nRegex constant matching an integer expression\n" - example: [] - syntax: - content: public const string Integer = "^[0-9]+$" - return: - type: System.String - content.vb: Public Const Integer As String = "^[0-9]+$" - modifiers.csharp: - - public - - const - modifiers.vb: - - Public - - Const references: - uid: OfficeOpenXml.FormulaParsing.Utilities commentId: N:OfficeOpenXml.FormulaParsing.Utilities diff --git a/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.DeflateStream.yml b/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.DeflateStream.yml index a9fdb0237..fb85e955c 100644 --- a/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.DeflateStream.yml +++ b/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.DeflateStream.yml @@ -91,7 +91,13 @@ items: - System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32) - System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) - System.IO.Stream.ReadAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + - System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + - System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) - System.IO.Stream.ReadByte + - System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + - System.IO.Stream.ReadExactly(System.Span{System.Byte}) + - System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + - System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) - System.IO.Stream.Synchronized(System.IO.Stream) - System.IO.Stream.ValidateBufferArguments(System.Byte[],System.Int32,System.Int32) - System.IO.Stream.ValidateCopyToArguments(System.IO.Stream,System.Int32) @@ -2432,6 +2438,218 @@ references: - name: ) nameWithType: ) fullName: ) +- uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + commentId: M:System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + parent: System.IO.Stream + isExternal: true + name: ReadAtLeast(Span, Int32, Boolean) + nameWithType: Stream.ReadAtLeast(Span, Int32, Boolean) + fullName: System.IO.Stream.ReadAtLeast(System.Span, System.Int32, System.Boolean) + nameWithType.vb: Stream.ReadAtLeast(Span(Of Byte), Int32, Boolean) + fullName.vb: System.IO.Stream.ReadAtLeast(System.Span(Of System.Byte), System.Int32, System.Boolean) + name.vb: ReadAtLeast(Span(Of Byte), Int32, Boolean) + spec.csharp: + - uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + name: ReadAtLeast + nameWithType: Stream.ReadAtLeast + fullName: System.IO.Stream.ReadAtLeast + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + name: ReadAtLeast + nameWithType: Stream.ReadAtLeast + fullName: System.IO.Stream.ReadAtLeast + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadAtLeastAsync(Memory, Int32, Boolean, CancellationToken) + nameWithType: Stream.ReadAtLeastAsync(Memory, Int32, Boolean, CancellationToken) + fullName: System.IO.Stream.ReadAtLeastAsync(System.Memory, System.Int32, System.Boolean, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadAtLeastAsync(Memory(Of Byte), Int32, Boolean, CancellationToken) + fullName.vb: System.IO.Stream.ReadAtLeastAsync(System.Memory(Of System.Byte), System.Int32, System.Boolean, System.Threading.CancellationToken) + name.vb: ReadAtLeastAsync(Memory(Of Byte), Int32, Boolean, CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + name: ReadAtLeastAsync + nameWithType: Stream.ReadAtLeastAsync + fullName: System.IO.Stream.ReadAtLeastAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + name: ReadAtLeastAsync + nameWithType: Stream.ReadAtLeastAsync + fullName: System.IO.Stream.ReadAtLeastAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) - uid: System.IO.Stream.ReadByte commentId: M:System.IO.Stream.ReadByte parent: System.IO.Stream @@ -2463,6 +2681,334 @@ references: - name: ) nameWithType: ) fullName: ) +- uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + commentId: M:System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + parent: System.IO.Stream + isExternal: true + name: ReadExactly(Byte[], Int32, Int32) + nameWithType: Stream.ReadExactly(Byte[], Int32, Int32) + fullName: System.IO.Stream.ReadExactly(System.Byte[], System.Int32, System.Int32) + nameWithType.vb: Stream.ReadExactly(Byte(), Int32, Int32) + fullName.vb: System.IO.Stream.ReadExactly(System.Byte(), System.Int32, System.Int32) + name.vb: ReadExactly(Byte(), Int32, Int32) + spec.csharp: + - uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + commentId: M:System.IO.Stream.ReadExactly(System.Span{System.Byte}) + parent: System.IO.Stream + isExternal: true + name: ReadExactly(Span) + nameWithType: Stream.ReadExactly(Span) + fullName: System.IO.Stream.ReadExactly(System.Span) + nameWithType.vb: Stream.ReadExactly(Span(Of Byte)) + fullName.vb: System.IO.Stream.ReadExactly(System.Span(Of System.Byte)) + name.vb: ReadExactly(Span(Of Byte)) + spec.csharp: + - uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadExactlyAsync(Byte[], Int32, Int32, CancellationToken) + nameWithType: Stream.ReadExactlyAsync(Byte[], Int32, Int32, CancellationToken) + fullName: System.IO.Stream.ReadExactlyAsync(System.Byte[], System.Int32, System.Int32, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadExactlyAsync(Byte(), Int32, Int32, CancellationToken) + fullName.vb: System.IO.Stream.ReadExactlyAsync(System.Byte(), System.Int32, System.Int32, System.Threading.CancellationToken) + name.vb: ReadExactlyAsync(Byte(), Int32, Int32, CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadExactlyAsync(Memory, CancellationToken) + nameWithType: Stream.ReadExactlyAsync(Memory, CancellationToken) + fullName: System.IO.Stream.ReadExactlyAsync(System.Memory, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadExactlyAsync(Memory(Of Byte), CancellationToken) + fullName.vb: System.IO.Stream.ReadExactlyAsync(System.Memory(Of System.Byte), System.Threading.CancellationToken) + name.vb: ReadExactlyAsync(Memory(Of Byte), CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) - uid: System.IO.Stream.Synchronized(System.IO.Stream) commentId: M:System.IO.Stream.Synchronized(System.IO.Stream) parent: System.IO.Stream diff --git a/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.GZipStream.yml b/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.GZipStream.yml index 27eb0359a..3f20c6c23 100644 --- a/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.GZipStream.yml +++ b/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.GZipStream.yml @@ -94,7 +94,13 @@ items: - System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32) - System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) - System.IO.Stream.ReadAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + - System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + - System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) - System.IO.Stream.ReadByte + - System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + - System.IO.Stream.ReadExactly(System.Span{System.Byte}) + - System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + - System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) - System.IO.Stream.Synchronized(System.IO.Stream) - System.IO.Stream.ValidateBufferArguments(System.Byte[],System.Int32,System.Int32) - System.IO.Stream.ValidateCopyToArguments(System.IO.Stream,System.Int32) @@ -2511,6 +2517,218 @@ references: - name: ) nameWithType: ) fullName: ) +- uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + commentId: M:System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + parent: System.IO.Stream + isExternal: true + name: ReadAtLeast(Span, Int32, Boolean) + nameWithType: Stream.ReadAtLeast(Span, Int32, Boolean) + fullName: System.IO.Stream.ReadAtLeast(System.Span, System.Int32, System.Boolean) + nameWithType.vb: Stream.ReadAtLeast(Span(Of Byte), Int32, Boolean) + fullName.vb: System.IO.Stream.ReadAtLeast(System.Span(Of System.Byte), System.Int32, System.Boolean) + name.vb: ReadAtLeast(Span(Of Byte), Int32, Boolean) + spec.csharp: + - uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + name: ReadAtLeast + nameWithType: Stream.ReadAtLeast + fullName: System.IO.Stream.ReadAtLeast + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + name: ReadAtLeast + nameWithType: Stream.ReadAtLeast + fullName: System.IO.Stream.ReadAtLeast + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadAtLeastAsync(Memory, Int32, Boolean, CancellationToken) + nameWithType: Stream.ReadAtLeastAsync(Memory, Int32, Boolean, CancellationToken) + fullName: System.IO.Stream.ReadAtLeastAsync(System.Memory, System.Int32, System.Boolean, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadAtLeastAsync(Memory(Of Byte), Int32, Boolean, CancellationToken) + fullName.vb: System.IO.Stream.ReadAtLeastAsync(System.Memory(Of System.Byte), System.Int32, System.Boolean, System.Threading.CancellationToken) + name.vb: ReadAtLeastAsync(Memory(Of Byte), Int32, Boolean, CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + name: ReadAtLeastAsync + nameWithType: Stream.ReadAtLeastAsync + fullName: System.IO.Stream.ReadAtLeastAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + name: ReadAtLeastAsync + nameWithType: Stream.ReadAtLeastAsync + fullName: System.IO.Stream.ReadAtLeastAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) - uid: System.IO.Stream.ReadByte commentId: M:System.IO.Stream.ReadByte parent: System.IO.Stream @@ -2542,6 +2760,334 @@ references: - name: ) nameWithType: ) fullName: ) +- uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + commentId: M:System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + parent: System.IO.Stream + isExternal: true + name: ReadExactly(Byte[], Int32, Int32) + nameWithType: Stream.ReadExactly(Byte[], Int32, Int32) + fullName: System.IO.Stream.ReadExactly(System.Byte[], System.Int32, System.Int32) + nameWithType.vb: Stream.ReadExactly(Byte(), Int32, Int32) + fullName.vb: System.IO.Stream.ReadExactly(System.Byte(), System.Int32, System.Int32) + name.vb: ReadExactly(Byte(), Int32, Int32) + spec.csharp: + - uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + commentId: M:System.IO.Stream.ReadExactly(System.Span{System.Byte}) + parent: System.IO.Stream + isExternal: true + name: ReadExactly(Span) + nameWithType: Stream.ReadExactly(Span) + fullName: System.IO.Stream.ReadExactly(System.Span) + nameWithType.vb: Stream.ReadExactly(Span(Of Byte)) + fullName.vb: System.IO.Stream.ReadExactly(System.Span(Of System.Byte)) + name.vb: ReadExactly(Span(Of Byte)) + spec.csharp: + - uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadExactlyAsync(Byte[], Int32, Int32, CancellationToken) + nameWithType: Stream.ReadExactlyAsync(Byte[], Int32, Int32, CancellationToken) + fullName: System.IO.Stream.ReadExactlyAsync(System.Byte[], System.Int32, System.Int32, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadExactlyAsync(Byte(), Int32, Int32, CancellationToken) + fullName.vb: System.IO.Stream.ReadExactlyAsync(System.Byte(), System.Int32, System.Int32, System.Threading.CancellationToken) + name.vb: ReadExactlyAsync(Byte(), Int32, Int32, CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadExactlyAsync(Memory, CancellationToken) + nameWithType: Stream.ReadExactlyAsync(Memory, CancellationToken) + fullName: System.IO.Stream.ReadExactlyAsync(System.Memory, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadExactlyAsync(Memory(Of Byte), CancellationToken) + fullName.vb: System.IO.Stream.ReadExactlyAsync(System.Memory(Of System.Byte), System.Threading.CancellationToken) + name.vb: ReadExactlyAsync(Memory(Of Byte), CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) - uid: System.IO.Stream.Synchronized(System.IO.Stream) commentId: M:System.IO.Stream.Synchronized(System.IO.Stream) parent: System.IO.Stream diff --git a/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.ParallelDeflateOutputStream.yml b/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.ParallelDeflateOutputStream.yml index cd11d59fa..2b41a44dc 100644 --- a/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.ParallelDeflateOutputStream.yml +++ b/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.ParallelDeflateOutputStream.yml @@ -87,7 +87,13 @@ items: - System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32) - System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) - System.IO.Stream.ReadAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + - System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + - System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) - System.IO.Stream.ReadByte + - System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + - System.IO.Stream.ReadExactly(System.Span{System.Byte}) + - System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + - System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) - System.IO.Stream.Synchronized(System.IO.Stream) - System.IO.Stream.ValidateBufferArguments(System.Byte[],System.Int32,System.Int32) - System.IO.Stream.ValidateCopyToArguments(System.IO.Stream,System.Int32) @@ -2262,6 +2268,218 @@ references: - name: ) nameWithType: ) fullName: ) +- uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + commentId: M:System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + parent: System.IO.Stream + isExternal: true + name: ReadAtLeast(Span, Int32, Boolean) + nameWithType: Stream.ReadAtLeast(Span, Int32, Boolean) + fullName: System.IO.Stream.ReadAtLeast(System.Span, System.Int32, System.Boolean) + nameWithType.vb: Stream.ReadAtLeast(Span(Of Byte), Int32, Boolean) + fullName.vb: System.IO.Stream.ReadAtLeast(System.Span(Of System.Byte), System.Int32, System.Boolean) + name.vb: ReadAtLeast(Span(Of Byte), Int32, Boolean) + spec.csharp: + - uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + name: ReadAtLeast + nameWithType: Stream.ReadAtLeast + fullName: System.IO.Stream.ReadAtLeast + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + name: ReadAtLeast + nameWithType: Stream.ReadAtLeast + fullName: System.IO.Stream.ReadAtLeast + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadAtLeastAsync(Memory, Int32, Boolean, CancellationToken) + nameWithType: Stream.ReadAtLeastAsync(Memory, Int32, Boolean, CancellationToken) + fullName: System.IO.Stream.ReadAtLeastAsync(System.Memory, System.Int32, System.Boolean, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadAtLeastAsync(Memory(Of Byte), Int32, Boolean, CancellationToken) + fullName.vb: System.IO.Stream.ReadAtLeastAsync(System.Memory(Of System.Byte), System.Int32, System.Boolean, System.Threading.CancellationToken) + name.vb: ReadAtLeastAsync(Memory(Of Byte), Int32, Boolean, CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + name: ReadAtLeastAsync + nameWithType: Stream.ReadAtLeastAsync + fullName: System.IO.Stream.ReadAtLeastAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + name: ReadAtLeastAsync + nameWithType: Stream.ReadAtLeastAsync + fullName: System.IO.Stream.ReadAtLeastAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) - uid: System.IO.Stream.ReadByte commentId: M:System.IO.Stream.ReadByte parent: System.IO.Stream @@ -2293,6 +2511,334 @@ references: - name: ) nameWithType: ) fullName: ) +- uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + commentId: M:System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + parent: System.IO.Stream + isExternal: true + name: ReadExactly(Byte[], Int32, Int32) + nameWithType: Stream.ReadExactly(Byte[], Int32, Int32) + fullName: System.IO.Stream.ReadExactly(System.Byte[], System.Int32, System.Int32) + nameWithType.vb: Stream.ReadExactly(Byte(), Int32, Int32) + fullName.vb: System.IO.Stream.ReadExactly(System.Byte(), System.Int32, System.Int32) + name.vb: ReadExactly(Byte(), Int32, Int32) + spec.csharp: + - uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + commentId: M:System.IO.Stream.ReadExactly(System.Span{System.Byte}) + parent: System.IO.Stream + isExternal: true + name: ReadExactly(Span) + nameWithType: Stream.ReadExactly(Span) + fullName: System.IO.Stream.ReadExactly(System.Span) + nameWithType.vb: Stream.ReadExactly(Span(Of Byte)) + fullName.vb: System.IO.Stream.ReadExactly(System.Span(Of System.Byte)) + name.vb: ReadExactly(Span(Of Byte)) + spec.csharp: + - uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadExactlyAsync(Byte[], Int32, Int32, CancellationToken) + nameWithType: Stream.ReadExactlyAsync(Byte[], Int32, Int32, CancellationToken) + fullName: System.IO.Stream.ReadExactlyAsync(System.Byte[], System.Int32, System.Int32, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadExactlyAsync(Byte(), Int32, Int32, CancellationToken) + fullName.vb: System.IO.Stream.ReadExactlyAsync(System.Byte(), System.Int32, System.Int32, System.Threading.CancellationToken) + name.vb: ReadExactlyAsync(Byte(), Int32, Int32, CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadExactlyAsync(Memory, CancellationToken) + nameWithType: Stream.ReadExactlyAsync(Memory, CancellationToken) + fullName: System.IO.Stream.ReadExactlyAsync(System.Memory, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadExactlyAsync(Memory(Of Byte), CancellationToken) + fullName.vb: System.IO.Stream.ReadExactlyAsync(System.Memory(Of System.Byte), System.Threading.CancellationToken) + name.vb: ReadExactlyAsync(Memory(Of Byte), CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) - uid: System.IO.Stream.Synchronized(System.IO.Stream) commentId: M:System.IO.Stream.Synchronized(System.IO.Stream) parent: System.IO.Stream diff --git a/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.ZlibStream.yml b/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.ZlibStream.yml index 6a17d4f43..18a1906f9 100644 --- a/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.ZlibStream.yml +++ b/docs/api/OfficeOpenXml.Packaging.Ionic.Zlib.ZlibStream.yml @@ -90,7 +90,13 @@ items: - System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32) - System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) - System.IO.Stream.ReadAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + - System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + - System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) - System.IO.Stream.ReadByte + - System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + - System.IO.Stream.ReadExactly(System.Span{System.Byte}) + - System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + - System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) - System.IO.Stream.Synchronized(System.IO.Stream) - System.IO.Stream.ValidateBufferArguments(System.Byte[],System.Int32,System.Int32) - System.IO.Stream.ValidateCopyToArguments(System.IO.Stream,System.Int32) @@ -2364,6 +2370,218 @@ references: - name: ) nameWithType: ) fullName: ) +- uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + commentId: M:System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + parent: System.IO.Stream + isExternal: true + name: ReadAtLeast(Span, Int32, Boolean) + nameWithType: Stream.ReadAtLeast(Span, Int32, Boolean) + fullName: System.IO.Stream.ReadAtLeast(System.Span, System.Int32, System.Boolean) + nameWithType.vb: Stream.ReadAtLeast(Span(Of Byte), Int32, Boolean) + fullName.vb: System.IO.Stream.ReadAtLeast(System.Span(Of System.Byte), System.Int32, System.Boolean) + name.vb: ReadAtLeast(Span(Of Byte), Int32, Boolean) + spec.csharp: + - uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + name: ReadAtLeast + nameWithType: Stream.ReadAtLeast + fullName: System.IO.Stream.ReadAtLeast + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadAtLeast(System.Span{System.Byte},System.Int32,System.Boolean) + name: ReadAtLeast + nameWithType: Stream.ReadAtLeast + fullName: System.IO.Stream.ReadAtLeast + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadAtLeastAsync(Memory, Int32, Boolean, CancellationToken) + nameWithType: Stream.ReadAtLeastAsync(Memory, Int32, Boolean, CancellationToken) + fullName: System.IO.Stream.ReadAtLeastAsync(System.Memory, System.Int32, System.Boolean, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadAtLeastAsync(Memory(Of Byte), Int32, Boolean, CancellationToken) + fullName.vb: System.IO.Stream.ReadAtLeastAsync(System.Memory(Of System.Byte), System.Int32, System.Boolean, System.Threading.CancellationToken) + name.vb: ReadAtLeastAsync(Memory(Of Byte), Int32, Boolean, CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + name: ReadAtLeastAsync + nameWithType: Stream.ReadAtLeastAsync + fullName: System.IO.Stream.ReadAtLeastAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadAtLeastAsync(System.Memory{System.Byte},System.Int32,System.Boolean,System.Threading.CancellationToken) + name: ReadAtLeastAsync + nameWithType: Stream.ReadAtLeastAsync + fullName: System.IO.Stream.ReadAtLeastAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Boolean + name: Boolean + nameWithType: Boolean + fullName: System.Boolean + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) - uid: System.IO.Stream.ReadByte commentId: M:System.IO.Stream.ReadByte parent: System.IO.Stream @@ -2395,6 +2613,334 @@ references: - name: ) nameWithType: ) fullName: ) +- uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + commentId: M:System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + parent: System.IO.Stream + isExternal: true + name: ReadExactly(Byte[], Int32, Int32) + nameWithType: Stream.ReadExactly(Byte[], Int32, Int32) + fullName: System.IO.Stream.ReadExactly(System.Byte[], System.Int32, System.Int32) + nameWithType.vb: Stream.ReadExactly(Byte(), Int32, Int32) + fullName.vb: System.IO.Stream.ReadExactly(System.Byte(), System.Int32, System.Int32) + name.vb: ReadExactly(Byte(), Int32, Int32) + spec.csharp: + - uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactly(System.Byte[],System.Int32,System.Int32) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + commentId: M:System.IO.Stream.ReadExactly(System.Span{System.Byte}) + parent: System.IO.Stream + isExternal: true + name: ReadExactly(Span) + nameWithType: Stream.ReadExactly(Span) + fullName: System.IO.Stream.ReadExactly(System.Span) + nameWithType.vb: Stream.ReadExactly(Span(Of Byte)) + fullName.vb: System.IO.Stream.ReadExactly(System.Span(Of System.Byte)) + name.vb: ReadExactly(Span(Of Byte)) + spec.csharp: + - uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactly(System.Span{System.Byte}) + name: ReadExactly + nameWithType: Stream.ReadExactly + fullName: System.IO.Stream.ReadExactly + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Span`1 + name: Span + nameWithType: Span + fullName: System.Span + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadExactlyAsync(Byte[], Int32, Int32, CancellationToken) + nameWithType: Stream.ReadExactlyAsync(Byte[], Int32, Int32, CancellationToken) + fullName: System.IO.Stream.ReadExactlyAsync(System.Byte[], System.Int32, System.Int32, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadExactlyAsync(Byte(), Int32, Int32, CancellationToken) + fullName.vb: System.IO.Stream.ReadExactlyAsync(System.Byte(), System.Int32, System.Int32, System.Threading.CancellationToken) + name.vb: ReadExactlyAsync(Byte(), Int32, Int32, CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '[]' + nameWithType: '[]' + fullName: '[]' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactlyAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: () + nameWithType: () + fullName: () + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Int32 + name: Int32 + nameWithType: Int32 + fullName: System.Int32 + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + commentId: M:System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + parent: System.IO.Stream + isExternal: true + name: ReadExactlyAsync(Memory, CancellationToken) + nameWithType: Stream.ReadExactlyAsync(Memory, CancellationToken) + fullName: System.IO.Stream.ReadExactlyAsync(System.Memory, System.Threading.CancellationToken) + nameWithType.vb: Stream.ReadExactlyAsync(Memory(Of Byte), CancellationToken) + fullName.vb: System.IO.Stream.ReadExactlyAsync(System.Memory(Of System.Byte), System.Threading.CancellationToken) + name.vb: ReadExactlyAsync(Memory(Of Byte), CancellationToken) + spec.csharp: + - uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.IO.Stream.ReadExactlyAsync(System.Memory{System.Byte},System.Threading.CancellationToken) + name: ReadExactlyAsync + nameWithType: Stream.ReadExactlyAsync + fullName: System.IO.Stream.ReadExactlyAsync + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Memory`1 + name: Memory + nameWithType: Memory + fullName: System.Memory + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Byte + name: Byte + nameWithType: Byte + fullName: System.Byte + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Threading.CancellationToken + name: CancellationToken + nameWithType: CancellationToken + fullName: System.Threading.CancellationToken + isExternal: true + - name: ) + nameWithType: ) + fullName: ) - uid: System.IO.Stream.Synchronized(System.IO.Stream) commentId: M:System.IO.Stream.Synchronized(System.IO.Stream) parent: System.IO.Stream diff --git a/docs/api/OfficeOpenXml.Packaging.ZipPackageRelationshipCollection.yml b/docs/api/OfficeOpenXml.Packaging.ZipPackageRelationshipCollection.yml index c36bcf259..3f65dd462 100644 --- a/docs/api/OfficeOpenXml.Packaging.ZipPackageRelationshipCollection.yml +++ b/docs/api/OfficeOpenXml.Packaging.ZipPackageRelationshipCollection.yml @@ -23,7 +23,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ZipPackageRelationshipCollection path: ../src/EPPlus/Packaging/ZipPackageRelationshipCollection.cs - startLine: 25 + startLine: 26 assemblies: - EPPlus namespace: OfficeOpenXml.Packaging @@ -71,7 +71,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: _rels path: ../src/EPPlus/Packaging/ZipPackageRelationshipCollection.cs - startLine: 30 + startLine: 31 assemblies: - EPPlus namespace: OfficeOpenXml.Packaging @@ -104,7 +104,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: GetEnumerator path: ../src/EPPlus/Packaging/ZipPackageRelationshipCollection.cs - startLine: 39 + startLine: 40 assemblies: - EPPlus namespace: OfficeOpenXml.Packaging @@ -142,7 +142,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: System.Collections.IEnumerable.GetEnumerator path: ../src/EPPlus/Packaging/ZipPackageRelationshipCollection.cs - startLine: 44 + startLine: 45 assemblies: - EPPlus namespace: OfficeOpenXml.Packaging @@ -174,7 +174,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Count path: ../src/EPPlus/Packaging/ZipPackageRelationshipCollection.cs - startLine: 101 + startLine: 102 assemblies: - EPPlus namespace: OfficeOpenXml.Packaging diff --git a/docs/api/OfficeOpenXml.Style.ExcelRichText.yml b/docs/api/OfficeOpenXml.Style.ExcelRichText.yml index 1f2f6d283..e2f9de563 100644 --- a/docs/api/OfficeOpenXml.Style.ExcelRichText.yml +++ b/docs/api/OfficeOpenXml.Style.ExcelRichText.yml @@ -8,6 +8,7 @@ items: - OfficeOpenXml.Style.ExcelRichText._collection - OfficeOpenXml.Style.ExcelRichText.Bold - OfficeOpenXml.Style.ExcelRichText.Color + - OfficeOpenXml.Style.ExcelRichText.ColorSettings - OfficeOpenXml.Style.ExcelRichText.FontName - OfficeOpenXml.Style.ExcelRichText.HtmlText - OfficeOpenXml.Style.ExcelRichText.Italic @@ -31,7 +32,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ExcelRichText path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 25 + startLine: 27 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -77,7 +78,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Text path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 43 + startLine: 45 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -114,7 +115,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HtmlText path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 66 + startLine: 68 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -151,7 +152,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: PreserveSpace path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 88 + startLine: 90 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -188,7 +189,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Bold path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 121 + startLine: 123 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -225,7 +226,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Italic path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 145 + startLine: 147 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -262,7 +263,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Strike path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 170 + startLine: 172 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -299,7 +300,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: UnderLine path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 194 + startLine: 196 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -336,7 +337,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: VerticalAlign path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 219 + startLine: 221 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -373,7 +374,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Size path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 259 + startLine: 261 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -410,7 +411,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: FontName path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 276 + startLine: 278 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -447,11 +448,11 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Color path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 293 + startLine: 299 assemblies: - EPPlus namespace: OfficeOpenXml.Style - summary: "\nText color\n" + summary: "\nText color.\nAlso see \n" example: [] syntax: content: public Color Color { get; set; } @@ -466,6 +467,43 @@ items: - set modifiers.vb: - Public +- uid: OfficeOpenXml.Style.ExcelRichText.ColorSettings + commentId: P:OfficeOpenXml.Style.ExcelRichText.ColorSettings + id: ColorSettings + parent: OfficeOpenXml.Style.ExcelRichText + langs: + - csharp + - vb + name: ColorSettings + nameWithType: ExcelRichText.ColorSettings + fullName: OfficeOpenXml.Style.ExcelRichText.ColorSettings + type: Property + source: + remote: + path: src/EPPlus/Style/ExcelRichText.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: ColorSettings + path: ../src/EPPlus/Style/ExcelRichText.cs + startLine: 350 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Style + summary: "\nColor settings.\n\n" + example: [] + syntax: + content: public ExcelRichTextColor ColorSettings { get; } + parameters: [] + return: + type: OfficeOpenXml.Style.ExcelRichTextColor + content.vb: Public ReadOnly Property ColorSettings As ExcelRichTextColor + overload: OfficeOpenXml.Style.ExcelRichText.ColorSettings* + modifiers.csharp: + - public + - get + modifiers.vb: + - Public + - ReadOnly - uid: OfficeOpenXml.Style.ExcelRichText._collection commentId: P:OfficeOpenXml.Style.ExcelRichText._collection id: _collection @@ -484,7 +522,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: _collection path: ../src/EPPlus/Style/ExcelRichText.cs - startLine: 317 + startLine: 364 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -889,6 +927,9 @@ references: name: FontName nameWithType: ExcelRichText.FontName fullName: OfficeOpenXml.Style.ExcelRichText.FontName +- uid: OfficeOpenXml.Style.ExcelRichText.ColorSettings + commentId: P:OfficeOpenXml.Style.ExcelRichText.ColorSettings + isExternal: true - uid: OfficeOpenXml.Style.ExcelRichText.Color* commentId: Overload:OfficeOpenXml.Style.ExcelRichText.Color name: Color @@ -907,6 +948,20 @@ references: name: System.Drawing nameWithType: System.Drawing fullName: System.Drawing +- uid: OfficeOpenXml.Style.ExcelRichText.Color + commentId: P:OfficeOpenXml.Style.ExcelRichText.Color + isExternal: true +- uid: OfficeOpenXml.Style.ExcelRichText.ColorSettings* + commentId: Overload:OfficeOpenXml.Style.ExcelRichText.ColorSettings + name: ColorSettings + nameWithType: ExcelRichText.ColorSettings + fullName: OfficeOpenXml.Style.ExcelRichText.ColorSettings +- uid: OfficeOpenXml.Style.ExcelRichTextColor + commentId: T:OfficeOpenXml.Style.ExcelRichTextColor + parent: OfficeOpenXml.Style + name: ExcelRichTextColor + nameWithType: ExcelRichTextColor + fullName: OfficeOpenXml.Style.ExcelRichTextColor - uid: OfficeOpenXml.Style.ExcelRichText._collection* commentId: Overload:OfficeOpenXml.Style.ExcelRichText._collection name: _collection diff --git a/docs/api/OfficeOpenXml.Style.ExcelRichTextCollection.yml b/docs/api/OfficeOpenXml.Style.ExcelRichTextCollection.yml index 6aaf28f31..fada2fc4d 100644 --- a/docs/api/OfficeOpenXml.Style.ExcelRichTextCollection.yml +++ b/docs/api/OfficeOpenXml.Style.ExcelRichTextCollection.yml @@ -80,7 +80,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: this[] path: ../src/EPPlus/Style/ExcelRichTextCollection.cs - startLine: 51 + startLine: 54 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -124,7 +124,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Count path: ../src/EPPlus/Style/ExcelRichTextCollection.cs - startLine: 63 + startLine: 66 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -161,7 +161,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Add path: ../src/EPPlus/Style/ExcelRichTextCollection.cs - startLine: 76 + startLine: 79 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -203,7 +203,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Insert path: ../src/EPPlus/Style/ExcelRichTextCollection.cs - startLine: 88 + startLine: 91 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -245,7 +245,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Clear path: ../src/EPPlus/Style/ExcelRichTextCollection.cs - startLine: 185 + startLine: 188 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -277,7 +277,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: RemoveAt path: ../src/EPPlus/Style/ExcelRichTextCollection.cs - startLine: 199 + startLine: 202 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -313,7 +313,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Remove path: ../src/EPPlus/Style/ExcelRichTextCollection.cs - startLine: 209 + startLine: 212 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -349,7 +349,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Text path: ../src/EPPlus/Style/ExcelRichTextCollection.cs - startLine: 219 + startLine: 222 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -386,7 +386,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HtmlText path: ../src/EPPlus/Style/ExcelRichTextCollection.cs - startLine: 253 + startLine: 256 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -424,7 +424,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: System.Collections.Generic.IEnumerable.GetEnumerator path: ../src/EPPlus/Style/ExcelRichTextCollection.cs - startLine: 267 + startLine: 270 assemblies: - EPPlus namespace: OfficeOpenXml.Style @@ -457,7 +457,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: System.Collections.IEnumerable.GetEnumerator path: ../src/EPPlus/Style/ExcelRichTextCollection.cs - startLine: 276 + startLine: 279 assemblies: - EPPlus namespace: OfficeOpenXml.Style diff --git a/docs/api/OfficeOpenXml.Style.ExcelRichTextColor.yml b/docs/api/OfficeOpenXml.Style.ExcelRichTextColor.yml new file mode 100644 index 000000000..a30c53812 --- /dev/null +++ b/docs/api/OfficeOpenXml.Style.ExcelRichTextColor.yml @@ -0,0 +1,675 @@ +### YamlMime:ManagedReference +items: +- uid: OfficeOpenXml.Style.ExcelRichTextColor + commentId: T:OfficeOpenXml.Style.ExcelRichTextColor + id: ExcelRichTextColor + parent: OfficeOpenXml.Style + children: + - OfficeOpenXml.Style.ExcelRichTextColor.Color + - OfficeOpenXml.Style.ExcelRichTextColor.Rgb + - OfficeOpenXml.Style.ExcelRichTextColor.Theme + - OfficeOpenXml.Style.ExcelRichTextColor.Tint + langs: + - csharp + - vb + name: ExcelRichTextColor + nameWithType: ExcelRichTextColor + fullName: OfficeOpenXml.Style.ExcelRichTextColor + type: Class + source: + remote: + path: src/EPPlus/Style/ExcelRichTextColor.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: ExcelRichTextColor + path: ../src/EPPlus/Style/ExcelRichTextColor.cs + startLine: 22 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Style + syntax: + content: 'public class ExcelRichTextColor : XmlHelper' + content.vb: >- + Public Class ExcelRichTextColor + Inherits XmlHelper + inheritance: + - System.Object + - OfficeOpenXml.XmlHelper + inheritedMembers: + - System.Object.Equals(System.Object) + - System.Object.Equals(System.Object,System.Object) + - System.Object.GetHashCode + - System.Object.GetType + - System.Object.MemberwiseClone + - System.Object.ReferenceEquals(System.Object,System.Object) + - System.Object.ToString + modifiers.csharp: + - public + - class + modifiers.vb: + - Public + - Class +- uid: OfficeOpenXml.Style.ExcelRichTextColor.Color + commentId: P:OfficeOpenXml.Style.ExcelRichTextColor.Color + id: Color + parent: OfficeOpenXml.Style.ExcelRichTextColor + langs: + - csharp + - vb + name: Color + nameWithType: ExcelRichTextColor.Color + fullName: OfficeOpenXml.Style.ExcelRichTextColor.Color + type: Property + source: + remote: + path: src/EPPlus/Style/ExcelRichTextColor.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: Color + path: ../src/EPPlus/Style/ExcelRichTextColor.cs + startLine: 33 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Style + summary: "\nGets the rgb color depending in , and \n" + example: [] + syntax: + content: public Color Color { get; } + parameters: [] + return: + type: System.Drawing.Color + content.vb: Public ReadOnly Property Color As Color + overload: OfficeOpenXml.Style.ExcelRichTextColor.Color* + modifiers.csharp: + - public + - get + modifiers.vb: + - Public + - ReadOnly +- uid: OfficeOpenXml.Style.ExcelRichTextColor.Rgb + commentId: P:OfficeOpenXml.Style.ExcelRichTextColor.Rgb + id: Rgb + parent: OfficeOpenXml.Style.ExcelRichTextColor + langs: + - csharp + - vb + name: Rgb + nameWithType: ExcelRichTextColor.Rgb + fullName: OfficeOpenXml.Style.ExcelRichTextColor.Rgb + type: Property + source: + remote: + path: src/EPPlus/Style/ExcelRichTextColor.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: Rgb + path: ../src/EPPlus/Style/ExcelRichTextColor.cs + startLine: 43 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Style + summary: "\nThe rgb color value set in the file.\n" + example: [] + syntax: + content: public Color Rgb { get; set; } + parameters: [] + return: + type: System.Drawing.Color + content.vb: Public Property Rgb As Color + overload: OfficeOpenXml.Style.ExcelRichTextColor.Rgb* + modifiers.csharp: + - public + - get + - set + modifiers.vb: + - Public +- uid: OfficeOpenXml.Style.ExcelRichTextColor.Theme + commentId: P:OfficeOpenXml.Style.ExcelRichTextColor.Theme + id: Theme + parent: OfficeOpenXml.Style.ExcelRichTextColor + langs: + - csharp + - vb + name: Theme + nameWithType: ExcelRichTextColor.Theme + fullName: OfficeOpenXml.Style.ExcelRichTextColor.Theme + type: Property + source: + remote: + path: src/EPPlus/Style/ExcelRichTextColor.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: Theme + path: ../src/EPPlus/Style/ExcelRichTextColor.cs + startLine: 71 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Style + summary: "\nThe color theme.\n" + example: [] + syntax: + content: public eThemeSchemeColor? Theme { get; set; } + parameters: [] + return: + type: System.Nullable{OfficeOpenXml.Drawing.eThemeSchemeColor} + content.vb: Public Property Theme As eThemeSchemeColor? + overload: OfficeOpenXml.Style.ExcelRichTextColor.Theme* + modifiers.csharp: + - public + - get + - set + modifiers.vb: + - Public +- uid: OfficeOpenXml.Style.ExcelRichTextColor.Tint + commentId: P:OfficeOpenXml.Style.ExcelRichTextColor.Tint + id: Tint + parent: OfficeOpenXml.Style.ExcelRichTextColor + langs: + - csharp + - vb + name: Tint + nameWithType: ExcelRichTextColor.Tint + fullName: OfficeOpenXml.Style.ExcelRichTextColor.Tint + type: Property + source: + remote: + path: src/EPPlus/Style/ExcelRichTextColor.cs + branch: develop + repo: https://github.com/EPPlusSoftware/EPPlus.git + id: Tint + path: ../src/EPPlus/Style/ExcelRichTextColor.cs + startLine: 95 + assemblies: + - EPPlus + namespace: OfficeOpenXml.Style + summary: "\nThe tint value for the color.\n" + example: [] + syntax: + content: public double? Tint { get; set; } + parameters: [] + return: + type: System.Nullable{System.Double} + content.vb: Public Property Tint As Double? + overload: OfficeOpenXml.Style.ExcelRichTextColor.Tint* + modifiers.csharp: + - public + - get + - set + modifiers.vb: + - Public +references: +- uid: OfficeOpenXml.Style + commentId: N:OfficeOpenXml.Style + name: OfficeOpenXml.Style + nameWithType: OfficeOpenXml.Style + fullName: OfficeOpenXml.Style +- uid: System.Object + commentId: T:System.Object + parent: System + isExternal: true + name: Object + nameWithType: Object + fullName: System.Object +- uid: OfficeOpenXml.XmlHelper + commentId: T:OfficeOpenXml.XmlHelper + parent: OfficeOpenXml + name: XmlHelper + nameWithType: XmlHelper + fullName: OfficeOpenXml.XmlHelper +- uid: System.Object.Equals(System.Object) + commentId: M:System.Object.Equals(System.Object) + parent: System.Object + isExternal: true + name: Equals(Object) + nameWithType: Object.Equals(Object) + fullName: System.Object.Equals(System.Object) + spec.csharp: + - uid: System.Object.Equals(System.Object) + name: Equals + nameWithType: Object.Equals + fullName: System.Object.Equals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.Equals(System.Object) + name: Equals + nameWithType: Object.Equals + fullName: System.Object.Equals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.Equals(System.Object,System.Object) + commentId: M:System.Object.Equals(System.Object,System.Object) + parent: System.Object + isExternal: true + name: Equals(Object, Object) + nameWithType: Object.Equals(Object, Object) + fullName: System.Object.Equals(System.Object, System.Object) + spec.csharp: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + nameWithType: Object.Equals + fullName: System.Object.Equals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.Equals(System.Object,System.Object) + name: Equals + nameWithType: Object.Equals + fullName: System.Object.Equals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.GetHashCode + commentId: M:System.Object.GetHashCode + parent: System.Object + isExternal: true + name: GetHashCode() + nameWithType: Object.GetHashCode() + fullName: System.Object.GetHashCode() + spec.csharp: + - uid: System.Object.GetHashCode + name: GetHashCode + nameWithType: Object.GetHashCode + fullName: System.Object.GetHashCode + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.GetHashCode + name: GetHashCode + nameWithType: Object.GetHashCode + fullName: System.Object.GetHashCode + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.GetType + commentId: M:System.Object.GetType + parent: System.Object + isExternal: true + name: GetType() + nameWithType: Object.GetType() + fullName: System.Object.GetType() + spec.csharp: + - uid: System.Object.GetType + name: GetType + nameWithType: Object.GetType + fullName: System.Object.GetType + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.GetType + name: GetType + nameWithType: Object.GetType + fullName: System.Object.GetType + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.MemberwiseClone + commentId: M:System.Object.MemberwiseClone + parent: System.Object + isExternal: true + name: MemberwiseClone() + nameWithType: Object.MemberwiseClone() + fullName: System.Object.MemberwiseClone() + spec.csharp: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + nameWithType: Object.MemberwiseClone + fullName: System.Object.MemberwiseClone + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.MemberwiseClone + name: MemberwiseClone + nameWithType: Object.MemberwiseClone + fullName: System.Object.MemberwiseClone + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.ReferenceEquals(System.Object,System.Object) + commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) + parent: System.Object + isExternal: true + name: ReferenceEquals(Object, Object) + nameWithType: Object.ReferenceEquals(Object, Object) + fullName: System.Object.ReferenceEquals(System.Object, System.Object) + spec.csharp: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + nameWithType: Object.ReferenceEquals + fullName: System.Object.ReferenceEquals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.ReferenceEquals(System.Object,System.Object) + name: ReferenceEquals + nameWithType: Object.ReferenceEquals + fullName: System.Object.ReferenceEquals + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ', ' + nameWithType: ', ' + fullName: ', ' + - uid: System.Object + name: Object + nameWithType: Object + fullName: System.Object + isExternal: true + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Object.ToString + commentId: M:System.Object.ToString + parent: System.Object + isExternal: true + name: ToString() + nameWithType: Object.ToString() + fullName: System.Object.ToString() + spec.csharp: + - uid: System.Object.ToString + name: ToString + nameWithType: Object.ToString + fullName: System.Object.ToString + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) + spec.vb: + - uid: System.Object.ToString + name: ToString + nameWithType: Object.ToString + fullName: System.Object.ToString + isExternal: true + - name: ( + nameWithType: ( + fullName: ( + - name: ) + nameWithType: ) + fullName: ) +- uid: System + commentId: N:System + isExternal: true + name: System + nameWithType: System + fullName: System +- uid: OfficeOpenXml + commentId: N:OfficeOpenXml + name: OfficeOpenXml + nameWithType: OfficeOpenXml + fullName: OfficeOpenXml +- uid: OfficeOpenXml.Style.ExcelRichTextColor.Rgb + commentId: P:OfficeOpenXml.Style.ExcelRichTextColor.Rgb + isExternal: true +- uid: OfficeOpenXml.Style.ExcelRichTextColor.Theme + commentId: P:OfficeOpenXml.Style.ExcelRichTextColor.Theme + isExternal: true +- uid: OfficeOpenXml.Style.ExcelRichTextColor.Tint + commentId: P:OfficeOpenXml.Style.ExcelRichTextColor.Tint + isExternal: true +- uid: OfficeOpenXml.Style.ExcelRichTextColor.Color* + commentId: Overload:OfficeOpenXml.Style.ExcelRichTextColor.Color + name: Color + nameWithType: ExcelRichTextColor.Color + fullName: OfficeOpenXml.Style.ExcelRichTextColor.Color +- uid: System.Drawing.Color + commentId: T:System.Drawing.Color + parent: System.Drawing + isExternal: true + name: Color + nameWithType: Color + fullName: System.Drawing.Color +- uid: System.Drawing + commentId: N:System.Drawing + isExternal: true + name: System.Drawing + nameWithType: System.Drawing + fullName: System.Drawing +- uid: OfficeOpenXml.Style.ExcelRichTextColor.Rgb* + commentId: Overload:OfficeOpenXml.Style.ExcelRichTextColor.Rgb + name: Rgb + nameWithType: ExcelRichTextColor.Rgb + fullName: OfficeOpenXml.Style.ExcelRichTextColor.Rgb +- uid: OfficeOpenXml.Style.ExcelRichTextColor.Theme* + commentId: Overload:OfficeOpenXml.Style.ExcelRichTextColor.Theme + name: Theme + nameWithType: ExcelRichTextColor.Theme + fullName: OfficeOpenXml.Style.ExcelRichTextColor.Theme +- uid: System.Nullable{OfficeOpenXml.Drawing.eThemeSchemeColor} + commentId: T:System.Nullable{OfficeOpenXml.Drawing.eThemeSchemeColor} + parent: System + definition: System.Nullable`1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + nameWithType.vb: Nullable(Of eThemeSchemeColor) + fullName.vb: System.Nullable(Of OfficeOpenXml.Drawing.eThemeSchemeColor) + name.vb: Nullable(Of eThemeSchemeColor) + spec.csharp: + - uid: System.Nullable`1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: OfficeOpenXml.Drawing.eThemeSchemeColor + name: eThemeSchemeColor + nameWithType: eThemeSchemeColor + fullName: OfficeOpenXml.Drawing.eThemeSchemeColor + - name: '>' + nameWithType: '>' + fullName: '>' + spec.vb: + - uid: System.Nullable`1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: OfficeOpenXml.Drawing.eThemeSchemeColor + name: eThemeSchemeColor + nameWithType: eThemeSchemeColor + fullName: OfficeOpenXml.Drawing.eThemeSchemeColor + - name: ) + nameWithType: ) + fullName: ) +- uid: System.Nullable`1 + commentId: T:System.Nullable`1 + isExternal: true + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + nameWithType.vb: Nullable(Of T) + fullName.vb: System.Nullable(Of T) + name.vb: Nullable(Of T) + spec.csharp: + - uid: System.Nullable`1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + isExternal: true + - name: < + nameWithType: < + fullName: < + - name: T + nameWithType: T + fullName: T + - name: '>' + nameWithType: '>' + fullName: '>' + spec.vb: + - uid: System.Nullable`1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - name: T + nameWithType: T + fullName: T + - name: ) + nameWithType: ) + fullName: ) +- uid: OfficeOpenXml.Style.ExcelRichTextColor.Tint* + commentId: Overload:OfficeOpenXml.Style.ExcelRichTextColor.Tint + name: Tint + nameWithType: ExcelRichTextColor.Tint + fullName: OfficeOpenXml.Style.ExcelRichTextColor.Tint +- uid: System.Nullable{System.Double} + commentId: T:System.Nullable{System.Double} + parent: System + definition: System.Nullable`1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + nameWithType.vb: Nullable(Of Double) + fullName.vb: System.Nullable(Of System.Double) + name.vb: Nullable(Of Double) + spec.csharp: + - uid: System.Nullable`1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + isExternal: true + - name: < + nameWithType: < + fullName: < + - uid: System.Double + name: Double + nameWithType: Double + fullName: System.Double + isExternal: true + - name: '>' + nameWithType: '>' + fullName: '>' + spec.vb: + - uid: System.Nullable`1 + name: Nullable + nameWithType: Nullable + fullName: System.Nullable + isExternal: true + - name: '(Of ' + nameWithType: '(Of ' + fullName: '(Of ' + - uid: System.Double + name: Double + nameWithType: Double + fullName: System.Double + isExternal: true + - name: ) + nameWithType: ) + fullName: ) diff --git a/docs/api/OfficeOpenXml.Style.yml b/docs/api/OfficeOpenXml.Style.yml index 52e0374c2..629c02850 100644 --- a/docs/api/OfficeOpenXml.Style.yml +++ b/docs/api/OfficeOpenXml.Style.yml @@ -27,6 +27,7 @@ items: - OfficeOpenXml.Style.ExcelReadingOrder - OfficeOpenXml.Style.ExcelRichText - OfficeOpenXml.Style.ExcelRichTextCollection + - OfficeOpenXml.Style.ExcelRichTextColor - OfficeOpenXml.Style.ExcelSlicerTableStyleElement - OfficeOpenXml.Style.ExcelStyle - OfficeOpenXml.Style.ExcelTableStyleElement @@ -195,6 +196,12 @@ references: name: ExcelRichTextCollection nameWithType: ExcelRichTextCollection fullName: OfficeOpenXml.Style.ExcelRichTextCollection +- uid: OfficeOpenXml.Style.ExcelRichTextColor + commentId: T:OfficeOpenXml.Style.ExcelRichTextColor + parent: OfficeOpenXml.Style + name: ExcelRichTextColor + nameWithType: ExcelRichTextColor + fullName: OfficeOpenXml.Style.ExcelRichTextColor - uid: OfficeOpenXml.Style.ExcelStyle commentId: T:OfficeOpenXml.Style.ExcelStyle parent: OfficeOpenXml.Style diff --git a/docs/api/OfficeOpenXml.Table.ExcelTable.yml b/docs/api/OfficeOpenXml.Table.ExcelTable.yml index d141c5426..c14257906 100644 --- a/docs/api/OfficeOpenXml.Table.ExcelTable.yml +++ b/docs/api/OfficeOpenXml.Table.ExcelTable.yml @@ -2192,7 +2192,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Sort path: ../src/EPPlus/Table/ExcelTable.cs - startLine: 1325 + startLine: 1326 assemblies: - EPPlus namespace: OfficeOpenXml.Table @@ -2229,7 +2229,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Sort path: ../src/EPPlus/Table/ExcelTable.cs - startLine: 1339 + startLine: 1340 assemblies: - EPPlus namespace: OfficeOpenXml.Table diff --git a/docs/api/OfficeOpenXml.Table.ExcelTableCollection.yml b/docs/api/OfficeOpenXml.Table.ExcelTableCollection.yml index 5a998e18a..af78aa5b4 100644 --- a/docs/api/OfficeOpenXml.Table.ExcelTableCollection.yml +++ b/docs/api/OfficeOpenXml.Table.ExcelTableCollection.yml @@ -119,7 +119,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Delete path: ../src/EPPlus/Table/ExcelTableCollection.cs - startLine: 119 + startLine: 120 assemblies: - EPPlus namespace: OfficeOpenXml.Table @@ -158,7 +158,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Delete path: ../src/EPPlus/Table/ExcelTableCollection.cs - startLine: 129 + startLine: 130 assemblies: - EPPlus namespace: OfficeOpenXml.Table @@ -197,7 +197,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Delete path: ../src/EPPlus/Table/ExcelTableCollection.cs - startLine: 144 + startLine: 145 assemblies: - EPPlus namespace: OfficeOpenXml.Table @@ -236,7 +236,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Count path: ../src/EPPlus/Table/ExcelTableCollection.cs - startLine: 194 + startLine: 195 assemblies: - EPPlus namespace: OfficeOpenXml.Table @@ -273,7 +273,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: GetFromRange path: ../src/EPPlus/Table/ExcelTableCollection.cs - startLine: 206 + startLine: 207 assemblies: - EPPlus namespace: OfficeOpenXml.Table @@ -312,7 +312,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: this[] path: ../src/EPPlus/Table/ExcelTableCollection.cs - startLine: 222 + startLine: 223 assemblies: - EPPlus namespace: OfficeOpenXml.Table @@ -356,7 +356,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: this[] path: ../src/EPPlus/Table/ExcelTableCollection.cs - startLine: 238 + startLine: 239 assemblies: - EPPlus namespace: OfficeOpenXml.Table @@ -400,7 +400,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: GetEnumerator path: ../src/EPPlus/Table/ExcelTableCollection.cs - startLine: 256 + startLine: 257 assemblies: - EPPlus namespace: OfficeOpenXml.Table @@ -438,7 +438,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: System.Collections.IEnumerable.GetEnumerator path: ../src/EPPlus/Table/ExcelTableCollection.cs - startLine: 261 + startLine: 262 assemblies: - EPPlus namespace: OfficeOpenXml.Table diff --git a/docs/api/OfficeOpenXml.VBA.ExcelVbaProject.yml b/docs/api/OfficeOpenXml.VBA.ExcelVbaProject.yml index 4cb1287af..46b057323 100644 --- a/docs/api/OfficeOpenXml.VBA.ExcelVbaProject.yml +++ b/docs/api/OfficeOpenXml.VBA.ExcelVbaProject.yml @@ -34,7 +34,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ExcelVbaProject path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 27 + startLine: 28 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -76,7 +76,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: SystemKind path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 57 + startLine: 58 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -113,7 +113,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: CompatVersion path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 61 + startLine: 62 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -150,7 +150,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Name path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 66 + startLine: 67 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -187,7 +187,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Description path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 70 + startLine: 71 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -224,7 +224,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HelpFile1 path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 74 + startLine: 75 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -261,7 +261,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HelpFile2 path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 78 + startLine: 79 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -298,7 +298,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: HelpContextID path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 82 + startLine: 83 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -335,7 +335,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Constants path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 86 + startLine: 87 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -372,7 +372,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: CodePage path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 90 + startLine: 91 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -409,7 +409,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: References path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 101 + startLine: 102 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -446,7 +446,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Modules path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 105 + startLine: 106 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -483,7 +483,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Signature path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 110 + startLine: 112 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -520,7 +520,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Protection path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 125 + startLine: 127 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -557,7 +557,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: Remove path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 1155 + startLine: 1189 assemblies: - EPPlus namespace: OfficeOpenXml.VBA @@ -589,7 +589,7 @@ items: repo: https://github.com/EPPlusSoftware/EPPlus.git id: ToString path: ../src/EPPlus/Vba/ExcelVBAProject.cs - startLine: 1187 + startLine: 1221 assemblies: - EPPlus namespace: OfficeOpenXml.VBA diff --git a/docs/api/OfficeOpenXml.XmlHelper.yml b/docs/api/OfficeOpenXml.XmlHelper.yml index f9ced3d82..5ca6f49a1 100644 --- a/docs/api/OfficeOpenXml.XmlHelper.yml +++ b/docs/api/OfficeOpenXml.XmlHelper.yml @@ -155,6 +155,7 @@ items: - OfficeOpenXml.Style.ExcelParagraphCollection - OfficeOpenXml.Style.ExcelRichText - OfficeOpenXml.Style.ExcelRichTextCollection + - OfficeOpenXml.Style.ExcelRichTextColor - OfficeOpenXml.Style.ExcelSlicerTableStyleElement - OfficeOpenXml.Style.ExcelTableStyleElement - OfficeOpenXml.Style.ExcelTextFont diff --git a/docs/api/toc.yml b/docs/api/toc.yml index 3b5a500af..ce8ac3669 100644 --- a/docs/api/toc.yml +++ b/docs/api/toc.yml @@ -846,6 +846,8 @@ name: ExcelChartSurface - uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitle name: ExcelChartTitle + - uid: OfficeOpenXml.Drawing.Chart.ExcelChartTitleStandard + name: ExcelChartTitleStandard - uid: OfficeOpenXml.Drawing.Chart.ExcelChartTrendline name: ExcelChartTrendline - uid: OfficeOpenXml.Drawing.Chart.ExcelChartTrendlineCollection @@ -2027,6 +2029,8 @@ name: ExcelRichText - uid: OfficeOpenXml.Style.ExcelRichTextCollection name: ExcelRichTextCollection + - uid: OfficeOpenXml.Style.ExcelRichTextColor + name: ExcelRichTextColor - uid: OfficeOpenXml.Style.ExcelSlicerTableStyleElement name: ExcelSlicerTableStyleElement - uid: OfficeOpenXml.Style.ExcelStyle From df6f74b43a630c4c221c4d95e0b2d3e552511664 Mon Sep 17 00:00:00 2001 From: JanKallman Date: Wed, 18 Jan 2023 15:58:50 +0100 Subject: [PATCH 3/7] Fixes issue #772 and #776. DataType.Time was not handled correctly as number in the operators in the formula parser. --- .../HtmlExport/EpplusTableCssWriter.async.cs | 2 +- .../Export/HtmlExport/EpplusTableCssWriter.cs | 2 +- .../Functions/DateTime/DateParsingFunction.cs | 4 +- .../ExpressionGraph/CompileResult.cs | 2 +- src/EPPlus/Style/XmlAccess/ExcelXfsXml.cs | 56 +++++++++++++------ .../Excel/Functions/DateTimeFunctionsTests.cs | 2 +- src/EPPlusTest/Issues.cs | 35 ++++++++++++ 7 files changed, 81 insertions(+), 22 deletions(-) diff --git a/src/EPPlus/Export/HtmlExport/EpplusTableCssWriter.async.cs b/src/EPPlus/Export/HtmlExport/EpplusTableCssWriter.async.cs index b2dd0c97d..2abd42141 100644 --- a/src/EPPlus/Export/HtmlExport/EpplusTableCssWriter.async.cs +++ b/src/EPPlus/Export/HtmlExport/EpplusTableCssWriter.async.cs @@ -63,7 +63,7 @@ internal async Task AddAlignmentToCssAsync(string name, List dataTypes) if(styleId>0) { var xfs = _table.WorkSheet.Workbook.Styles.CellXfs[styleId]; - if(xfs.ApplyAlignment) + if(xfs.ApplyAlignment??true) { hAlign = GetHorizontalAlignment(xfs); vAlign = GetVerticalAlignment(xfs); diff --git a/src/EPPlus/Export/HtmlExport/EpplusTableCssWriter.cs b/src/EPPlus/Export/HtmlExport/EpplusTableCssWriter.cs index 9402e0847..f58d8fb3d 100644 --- a/src/EPPlus/Export/HtmlExport/EpplusTableCssWriter.cs +++ b/src/EPPlus/Export/HtmlExport/EpplusTableCssWriter.cs @@ -70,7 +70,7 @@ internal void AddAlignmentToCss(string name, List dataTypes) if(styleId>0) { var xfs = _table.WorkSheet.Workbook.Styles.CellXfs[styleId]; - if(xfs.ApplyAlignment) + if(xfs.ApplyAlignment??true) { hAlign = GetHorizontalAlignment(xfs); vAlign = GetVerticalAlignment(xfs); diff --git a/src/EPPlus/FormulaParsing/Excel/Functions/DateTime/DateParsingFunction.cs b/src/EPPlus/FormulaParsing/Excel/Functions/DateTime/DateParsingFunction.cs index 3f53f50b5..eb44a2f9e 100644 --- a/src/EPPlus/FormulaParsing/Excel/Functions/DateTime/DateParsingFunction.cs +++ b/src/EPPlus/FormulaParsing/Excel/Functions/DateTime/DateParsingFunction.cs @@ -22,10 +22,10 @@ internal abstract class DateParsingFunction : ExcelFunction { protected System.DateTime ParseDate(IEnumerable arguments, object dateObj, int argIndex) { - System.DateTime date = System.DateTime.MinValue; + System.DateTime date; if (dateObj is string) { - date = System.DateTime.Parse(dateObj.ToString(), CultureInfo.InvariantCulture); + date = System.DateTime.Parse(dateObj.ToString(), CultureInfo.CurrentCulture); } else { diff --git a/src/EPPlus/FormulaParsing/ExpressionGraph/CompileResult.cs b/src/EPPlus/FormulaParsing/ExpressionGraph/CompileResult.cs index 6c4cad5a9..42ca45727 100644 --- a/src/EPPlus/FormulaParsing/ExpressionGraph/CompileResult.cs +++ b/src/EPPlus/FormulaParsing/ExpressionGraph/CompileResult.cs @@ -164,7 +164,7 @@ public bool IsNumeric { get { - return DataType == DataType.Decimal || DataType == DataType.Integer || DataType == DataType.Empty || DataType == DataType.Boolean || DataType == DataType.Date; + return DataType == DataType.Decimal || DataType == DataType.Integer || DataType == DataType.Empty || DataType == DataType.Boolean || DataType == DataType.Date || DataType == DataType.Time; } } diff --git a/src/EPPlus/Style/XmlAccess/ExcelXfsXml.cs b/src/EPPlus/Style/XmlAccess/ExcelXfsXml.cs index 0eef60685..812df4e0a 100644 --- a/src/EPPlus/Style/XmlAccess/ExcelXfsXml.cs +++ b/src/EPPlus/Style/XmlAccess/ExcelXfsXml.cs @@ -52,6 +52,12 @@ internal ExcelXfs(XmlNamespaceManager nsm, XmlNode topNode, ExcelStyles styles) Locked = GetXmlNodeBool(lockedPath,true); QuotePrefix = GetXmlNodeBool(quotePrefixPath); JustifyLastLine = GetXmlNodeBool(justifyLastLine); + ApplyAlignment = GetXmlNodeBoolNullable("@applyAlignment"); + ApplyBorder = GetXmlNodeBoolNullable("@applyBorder"); + ApplyFill = GetXmlNodeBoolNullable("@applyFill"); + ApplyFont = GetXmlNodeBoolNullable("@applyFont"); + ApplyNumberFormat = GetXmlNodeBoolNullable("@applyNumberFormat"); + ApplyProtection = GetXmlNodeBoolNullable("@applyProtection"); } private ExcelReadingOrder GetReadingOrder(string value) @@ -121,32 +127,32 @@ private bool isBuildIn get; set; } - internal bool ApplyNumberFormat + internal bool? ApplyNumberFormat { get; set; } - internal bool ApplyFont + internal bool? ApplyFont { get; set; } - internal bool ApplyFill + internal bool? ApplyFill { get; set; } - internal bool ApplyBorder + internal bool? ApplyBorder { get; set; } - internal bool ApplyAlignment + internal bool? ApplyAlignment { get; set; - } - internal bool ApplyProtection + } = true; + internal bool? ApplyProtection { get; set; @@ -325,6 +331,12 @@ internal ExcelXfs Copy(ExcelStyles styles) newXF.Hidden = Hidden; newXF.QuotePrefix = QuotePrefix; newXF.JustifyLastLine = JustifyLastLine; + newXF.ApplyAlignment = ApplyAlignment; + newXF.ApplyBorder = ApplyBorder; + newXF.ApplyFill = ApplyFill; + newXF.ApplyFont = ApplyFont; + newXF.ApplyNumberFormat= ApplyNumberFormat; + newXF.ApplyProtection = ApplyProtection; return newXF; } @@ -759,22 +771,34 @@ internal XmlNode CreateXmlNode(XmlNode topNode, bool isCellStyleXsf) if (_numFmtId >= 0) { SetXmlNodeString("@numFmtId", _numFmtId.ToString()); - if(_numFmtId > 0) SetXmlNodeString("@applyNumberFormat", "1"); + if(_numFmtId > 0 || ApplyNumberFormat.HasValue) + { + SetXmlNodeBool("@applyNumberFormat", ApplyNumberFormat??true); + } } if (FontId >= 0) { SetXmlNodeString("@fontId", _styles.Fonts[FontId].newID.ToString()); - if(FontId > 0) SetXmlNodeString("@applyFont", "1"); + if (FontId > 0 || ApplyFont.HasValue) + { + SetXmlNodeBool("@applyFont", ApplyFont ?? true); + } } if (FillId >= 0) { SetXmlNodeString("@fillId", _styles.Fills[FillId].newID.ToString()); - if(FillId > 0) SetXmlNodeString("@applyFill", "1"); + if (FillId > 0 || ApplyFill.HasValue) + { + SetXmlNodeBool("@applyFill", ApplyFill ?? true); + } } if (BorderId >= 0) { SetXmlNodeString("@borderId", _styles.Borders[BorderId].newID.ToString()); - if(BorderId > 0) SetXmlNodeString("@applyBorder", "1"); + if (BorderId > 0 || ApplyBorder.HasValue) + { + SetXmlNodeBool("@applyBorder", ApplyBorder ?? true); + } } if(HorizontalAlignment != ExcelHorizontalAlignment.General) SetXmlNodeString(horizontalAlignPath, SetAlignString(HorizontalAlignment)); if (doSetXfId) @@ -793,14 +817,14 @@ internal XmlNode CreateXmlNode(XmlNode topNode, bool isCellStyleXsf) if(QuotePrefix) SetXmlNodeString(quotePrefixPath, "1"); if(JustifyLastLine) SetXmlNodeString(justifyLastLine, "1"); - if ((Locked == false || Hidden == false)) + if ((Locked == false || Hidden == true || ApplyProtection.HasValue)) //Not default values, apply protection. { - SetXmlNodeString("@applyProtection", "1"); + SetXmlNodeBool("@applyProtection", ApplyProtection??true); } - if ((HorizontalAlignment != ExcelHorizontalAlignment.General || VerticalAlignment != ExcelVerticalAlignment.Bottom)) + if (HorizontalAlignment != ExcelHorizontalAlignment.General || VerticalAlignment != ExcelVerticalAlignment.Bottom || ApplyProtection.HasValue) { - SetXmlNodeString("@applyAlignment", "1"); + SetXmlNodeBool("@applyAlignment", ApplyProtection??true); } return TopNode; @@ -812,4 +836,4 @@ private string SetAlignString(Enum align) return newName.Substring(0, 1).ToLower(CultureInfo.InvariantCulture) + newName.Substring(1, newName.Length - 1); } } -} \ No newline at end of file +} diff --git a/src/EPPlusTest/FormulaParsing/Excel/Functions/DateTimeFunctionsTests.cs b/src/EPPlusTest/FormulaParsing/Excel/Functions/DateTimeFunctionsTests.cs index 1ac443cba..309717dad 100644 --- a/src/EPPlusTest/FormulaParsing/Excel/Functions/DateTimeFunctionsTests.cs +++ b/src/EPPlusTest/FormulaParsing/Excel/Functions/DateTimeFunctionsTests.cs @@ -693,7 +693,7 @@ public void TimeAddition() using (var package = new ExcelPackage()) { var ws = package.Workbook.Worksheets.Add("test"); - ws.Cells["A1"].Formula = "1 + (Time(10,0,0))"; + ws.Cells["A1"].Formula = "1 + Time(10,0,0)"; ws.Calculate(); var result = Convert.ToDouble(ws.Cells["A1"].Value); result = Math.Round(result, 2); diff --git a/src/EPPlusTest/Issues.cs b/src/EPPlusTest/Issues.cs index 351143ce3..2d137655a 100644 --- a/src/EPPlusTest/Issues.cs +++ b/src/EPPlusTest/Issues.cs @@ -4214,6 +4214,41 @@ public void S415() SaveAndCleanup(p); } } + [TestMethod] + public void Parsing_date_should_work_for_any_culture_format_issue_776() + { + //Issue: Date FormatException + + using (var p = new ExcelPackage()) + { + p.Workbook.Worksheets.Add("first"); + + var sheet = p.Workbook.Worksheets.First(); + + sheet.Cells["A1"].Value = "31.12.2019"; // here we have date formated by german style + sheet.Cells["A2"].Formula = "CHOOSE(MONTH($A$1),\" Jan \", \" Feb \", \" Mar \", \" Apr \", \" May \", \" Jun \", \" Jul \", \" Aug \", \" Sep \", \" Oct \", \" Nov \", \" Dec \")"; + sheet.Cells["A3"].Formula = "=DAY($A$1)&$A$2"; + + Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US"); + + p.Workbook.Calculate(); + Assert.AreEqual(ExcelErrorValue.Values.Value, sheet.Cells["A2"].Value.ToString()); + Assert.AreEqual(ExcelErrorValue.Values.Value, sheet.Cells["A3"].Value.ToString()); + + Thread.CurrentThread.CurrentCulture = new CultureInfo("de-DE"); + p.Workbook.Calculate(); + Assert.AreEqual(" Dec ", sheet.Cells["A2"].Value.ToString()); + Assert.AreEqual("31 Dec ", sheet.Cells["A3"].Value.ToString()); + } + } + [TestMethod] + public void StyleKeepBoxes() + { + using (var p = OpenTemplatePackage("XfsStyles.xlsx")) + { + SaveAndCleanup(p); + } + } } } From 9d7f5db9387b1061eac4bb363e000fe17a4e098e Mon Sep 17 00:00:00 2001 From: JanKallman Date: Thu, 19 Jan 2023 11:10:20 +0100 Subject: [PATCH 4/7] Fixed test failing on different culture setting --- .../Excel/Functions/DateDifTests.cs | 23 ++++++++++++++++++- .../Excel/Functions/Math/AverageATests.cs | 3 ++- .../FormulaParsing/Excel/OperatorsTests.cs | 7 +++++- 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/src/EPPlusTest/FormulaParsing/Excel/Functions/DateDifTests.cs b/src/EPPlusTest/FormulaParsing/Excel/Functions/DateDifTests.cs index a722fdc66..982934510 100644 --- a/src/EPPlusTest/FormulaParsing/Excel/Functions/DateDifTests.cs +++ b/src/EPPlusTest/FormulaParsing/Excel/Functions/DateDifTests.cs @@ -2,8 +2,11 @@ using OfficeOpenXml; using System; using System.Collections.Generic; +using System.Globalization; using System.Linq; using System.Text; +using System.Text.RegularExpressions; +using System.Threading; using System.Threading.Tasks; namespace EPPlusTest.FormulaParsing.Excel.Functions @@ -14,7 +17,9 @@ public class DateDifTests [TestMethod] public void ShouldHandleYearDiff() { - using(var package = new ExcelPackage()) + var culture = Thread.CurrentThread.CurrentCulture; + Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; + using (var package = new ExcelPackage()) { var sheet = package.Workbook.Worksheets.Add("test"); @@ -30,11 +35,14 @@ public void ShouldHandleYearDiff() sheet.Calculate(); Assert.AreEqual(1d, sheet.Cells["C1"].Value); } + Thread.CurrentThread.CurrentCulture = culture; } [TestMethod] public void ShouldHandleMonthDiff() { + var culture = Thread.CurrentThread.CurrentCulture; + Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; using (var package = new ExcelPackage()) { var sheet = package.Workbook.Worksheets.Add("test"); @@ -51,11 +59,14 @@ public void ShouldHandleMonthDiff() sheet.Calculate(); Assert.AreEqual(20d, sheet.Cells["C1"].Value); } + Thread.CurrentThread.CurrentCulture = culture; } [TestMethod] public void ShouldHandleTotalDays() { + var culture = Thread.CurrentThread.CurrentCulture; + Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; using (var package = new ExcelPackage()) { var sheet = package.Workbook.Worksheets.Add("test"); @@ -72,11 +83,14 @@ public void ShouldHandleTotalDays() sheet.Calculate(); Assert.AreEqual(639d, sheet.Cells["C1"].Value); } + Thread.CurrentThread.CurrentCulture = culture; } [TestMethod] public void ShouldHandleTotalDaysYm() { + var culture = Thread.CurrentThread.CurrentCulture; + Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; using (var package = new ExcelPackage()) { var sheet = package.Workbook.Worksheets.Add("test"); @@ -93,11 +107,14 @@ public void ShouldHandleTotalDaysYm() sheet.Calculate(); Assert.AreEqual(11d, sheet.Cells["C1"].Value); } + Thread.CurrentThread.CurrentCulture = culture; } [TestMethod] public void ShouldHandleTotalDaysYd() { + var culture = Thread.CurrentThread.CurrentCulture; + Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; using (var package = new ExcelPackage()) { var sheet = package.Workbook.Worksheets.Add("test"); @@ -114,11 +131,14 @@ public void ShouldHandleTotalDaysYd() sheet.Calculate(); Assert.AreEqual(274d, sheet.Cells["C1"].Value); } + Thread.CurrentThread.CurrentCulture = culture; } [TestMethod] public void ShouldHandleTotalDaysMd() { + var culture = Thread.CurrentThread.CurrentCulture; + Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; using (var package = new ExcelPackage()) { var sheet = package.Workbook.Worksheets.Add("test"); @@ -135,6 +155,7 @@ public void ShouldHandleTotalDaysMd() sheet.Calculate(); Assert.AreEqual(29d, sheet.Cells["C1"].Value); } + Thread.CurrentThread.CurrentCulture = culture; } } } diff --git a/src/EPPlusTest/FormulaParsing/Excel/Functions/Math/AverageATests.cs b/src/EPPlusTest/FormulaParsing/Excel/Functions/Math/AverageATests.cs index 1e6c5c865..272857fd9 100644 --- a/src/EPPlusTest/FormulaParsing/Excel/Functions/Math/AverageATests.cs +++ b/src/EPPlusTest/FormulaParsing/Excel/Functions/Math/AverageATests.cs @@ -28,6 +28,7 @@ Date Author Change *******************************************************************************/ using System; using System.Linq; +using System.Threading; using Microsoft.VisualStudio.TestTools.UnitTesting; using OfficeOpenXml; using OfficeOpenXml.FormulaParsing; @@ -63,7 +64,7 @@ public void AverageALiterals() new FunctionArgument(date1), new FunctionArgument(date2.ToString("d")) }, ParsingContext.Create()); - Assert.AreEqual((value1 + value2 + value3 + value4 + value5 + value6) / 6, result.Result); + Assert.AreEqual((value1 + value2 + value3 + value4 + value5 + value6) / 6, result.Result, $"Current Culture is {Thread.CurrentThread.CurrentCulture.Name}"); } [TestMethod] diff --git a/src/EPPlusTest/FormulaParsing/Excel/OperatorsTests.cs b/src/EPPlusTest/FormulaParsing/Excel/OperatorsTests.cs index 577d0899a..6de2fb934 100644 --- a/src/EPPlusTest/FormulaParsing/Excel/OperatorsTests.cs +++ b/src/EPPlusTest/FormulaParsing/Excel/OperatorsTests.cs @@ -35,6 +35,8 @@ Date Author Change using OfficeOpenXml.FormulaParsing.Excel.Operators; using OfficeOpenXml.FormulaParsing.Exceptions; using OfficeOpenXml.FormulaParsing.ExpressionGraph; +using System.Threading; +using System.Globalization; namespace EPPlusTest.Excel { @@ -212,6 +214,8 @@ public void OperatorsActingOnNumericStrings() [TestMethod] public void OperatorsActingOnDateStrings() { + var culture = Thread.CurrentThread.CurrentCulture; + Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; const string dateFormat = "M-dd-yyyy"; DateTime date1 = new DateTime(2015, 2, 20); DateTime date2 = new DateTime(2015, 12, 1); @@ -246,6 +250,7 @@ public void OperatorsActingOnDateStrings() Assert.IsFalse((bool)operatorResult.Result); operatorResult = Operator.LessThanOrEqual.Apply(result1, result2); Assert.IsFalse((bool)operatorResult.Result); - } + Thread.CurrentThread.CurrentCulture = culture; + } } } From 2711ef96e20a9f76144d7410d03f6fafb96f9883 Mon Sep 17 00:00:00 2001 From: JanKallman Date: Thu, 19 Jan 2023 11:23:36 +0100 Subject: [PATCH 5/7] Removed test setting CultureInfo --- src/EPPlusTest/Issues.cs | 37 ++++++++++++------------------------- 1 file changed, 12 insertions(+), 25 deletions(-) diff --git a/src/EPPlusTest/Issues.cs b/src/EPPlusTest/Issues.cs index 2d137655a..f6871c062 100644 --- a/src/EPPlusTest/Issues.cs +++ b/src/EPPlusTest/Issues.cs @@ -4214,39 +4214,26 @@ public void S415() SaveAndCleanup(p); } } + [TestMethod] - public void Parsing_date_should_work_for_any_culture_format_issue_776() + public void StyleKeepBoxes() { - //Issue: Date FormatException - - using (var p = new ExcelPackage()) + using (var p = OpenTemplatePackage("XfsStyles.xlsx")) { - p.Workbook.Worksheets.Add("first"); - - var sheet = p.Workbook.Worksheets.First(); - - sheet.Cells["A1"].Value = "31.12.2019"; // here we have date formated by german style - sheet.Cells["A2"].Formula = "CHOOSE(MONTH($A$1),\" Jan \", \" Feb \", \" Mar \", \" Apr \", \" May \", \" Jun \", \" Jul \", \" Aug \", \" Sep \", \" Oct \", \" Nov \", \" Dec \")"; - sheet.Cells["A3"].Formula = "=DAY($A$1)&$A$2"; - - Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US"); - - p.Workbook.Calculate(); - Assert.AreEqual(ExcelErrorValue.Values.Value, sheet.Cells["A2"].Value.ToString()); - Assert.AreEqual(ExcelErrorValue.Values.Value, sheet.Cells["A3"].Value.ToString()); - - Thread.CurrentThread.CurrentCulture = new CultureInfo("de-DE"); - - p.Workbook.Calculate(); - Assert.AreEqual(" Dec ", sheet.Cells["A2"].Value.ToString()); - Assert.AreEqual("31 Dec ", sheet.Cells["A3"].Value.ToString()); + SaveAndCleanup(p); } } [TestMethod] - public void StyleKeepBoxes() + public void BuildInStylesRegional() { - using (var p = OpenTemplatePackage("XfsStyles.xlsx")) + using (var p = OpenPackage("BuildinStylesRegional.xlsx", true)) { + var ws = p.Workbook.Worksheets.Add("Sheet1"); + ws.Cells["A1:A4"].FillNumber(1); + ws.Cells["A1"].Style.Numberformat.Format = "#,##0 ;(#,##0)"; + ws.Cells["A2"].Style.Numberformat.Format = "#,##0 ;[Red](#,##0)"; + ws.Cells["A3"].Style.Numberformat.Format = "#,##0.00;(#,##0.00)"; + ws.Cells["A4"].Style.Numberformat.Format = "#,##0.00;[Red](#,##0.00)"; SaveAndCleanup(p); } } From 39dca49e9a17242867be826a46affb49e6b79c5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=A4llman?= Date: Thu, 19 Jan 2023 13:09:37 +0100 Subject: [PATCH 6/7] Update CONTRIBUTING.md --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9268de1cd..6bb716427 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,10 +11,10 @@ Please see the Submission Guidelines below. ## Submission Guidelines Before you submit your question or issue, search Stack Overflow, maybe your question was already answered. If your issue appears to be a bug, please verify that it hasn't been reported before. -If it's not reported create an issue in the issue tracker with a fully reproducable unit test including any Excel files nessesary. +If it's not reported create an issue in the issue tracker with a fully reproducible unit test including any Excel files necessary. If we can't reproduce the issue, we can't fix it! -## Pull requsts +## Pull requests Anyone that want to contribute and submit a pull request are welcome to do so. Please note that for pull requests with more than 20 significant lines of code it's mandatory to sign the EPPlus CAA, for the pull request to be accepted. This is not a complicated process. Just download the CAA form, sign it and mail it to github@epplussoftware.com. You only need to do this once either for you or your company. From aeed3af11dca993d8487399eda69b3e331c1a604 Mon Sep 17 00:00:00 2001 From: JanKallman Date: Thu, 19 Jan 2023 13:26:19 +0100 Subject: [PATCH 7/7] Removed a test --- src/EPPlusTest/Issues.cs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/EPPlusTest/Issues.cs b/src/EPPlusTest/Issues.cs index f6871c062..4d38d2e9b 100644 --- a/src/EPPlusTest/Issues.cs +++ b/src/EPPlusTest/Issues.cs @@ -4200,20 +4200,6 @@ public void I778() SaveAndCleanup(package); } } - [TestMethod] - public void S415() - { - using(var p = OpenTemplatePackage("s415.xlsx")) - { - var ws = p.Workbook.Worksheets[0]; - //ws.Cells["A1:A4"].Style.Numberformat.Format = "0.000000"; - Assert.AreEqual("0,000000", ws.Cells["A1"].Text); - Assert.AreEqual("0,000001", ws.Cells["A2"].Text); - Assert.AreEqual("0,000002", ws.Cells["A3"].Text); - Assert.AreEqual("0,000005", ws.Cells["A4"].Text); - SaveAndCleanup(p); - } - } [TestMethod] public void StyleKeepBoxes()