Update 20240807 - nach NUGET-Update Syncfusion

This commit is contained in:
Stefan Hutter
2024-08-07 09:25:01 +02:00
parent 749b1e89ed
commit 77d5c661f7
8681 changed files with 5340624 additions and 1740134 deletions

Binary file not shown.

View File

@@ -16,7 +16,7 @@
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.7.0" newVersion="26.2462.7.0" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.8.0" newVersion="26.2462.8.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />

Binary file not shown.

View File

@@ -73,7 +73,7 @@
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Syncfusion.Licensing" publicKeyToken="632609b4d040f6b4" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.7.0" newVersion="26.2462.7.0" />
<bindingRedirect oldVersion="0.0.0.0-26.2462.8.0" newVersion="26.2462.8.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>

View File

@@ -71738,6 +71738,18 @@
Create grid columns.
</summary>
</member>
<member name="M:Syncfusion.DocIO.DLS.WTable.DocAutoFitColumns">
<summary>
Updates cell width of a table in DOC format document
</summary>
</member>
<member name="M:Syncfusion.DocIO.DLS.WTable.IsAllRowsHaveSameWidth(System.Single)">
<summary>
Check whether allrows in a table contains same row width
</summary>
<param name="rowWidth">Row width of first row</param>
<returns>True if all rows contain same row width. Else false</returns>
</member>
<member name="M:Syncfusion.DocIO.DLS.WTable.CheckNeedToAutoFit">
<summary>
Checks whether the table is need to autofit to content or not.
@@ -98133,6 +98145,19 @@
</summary>
<returns></returns>
</member>
<member name="M:Syncfusion.DocIO.DLS.Rendering.DocumentLayouter.IsLastTableHasKeepWithNext">
<summary>
Checks whether all the rows in the last table on the previous page's column have "Keep with Next".
</summary>
<returns></returns>
</member>
<member name="M:Syncfusion.DocIO.DLS.Rendering.DocumentLayouter.IsTableHasKeepWithNext(Syncfusion.Layouting.LayoutedWidget)">
<summary>
Checks whether all the rows in the table has keep with next.
</summary>
<param name="ltWidget">layouted widget</param>
<returns></returns>
</member>
<member name="M:Syncfusion.DocIO.DLS.Rendering.DocumentLayouter.HandlePageBreak">
<summary>
Handles the page break.

View File

@@ -3680,6 +3680,52 @@
</param>
<returns>A number that is rounded up to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up. However, if the number or the significance is zero, zero is returned.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeVStack(System.String)">
<summary>
This function appends arrays vertically and in sequence to return a larger array.
</summary>
<param name="args">
A string containing the arguments separated by commas.
The format should be: "array1,[array2],..."
<list type="bullet">
<item><description><c>array1, array2, ...</c>: The arrays to append.</description></item>
</list>
</param>
<returns>A single array that has as many columns as all of the source arrays combined and as many rows as the tallest of the source arrays.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeHStack(System.String)">
<summary>
This function appends arrays horizontally and in sequence to return a larger array.
</summary>
<param name="args">
A string containing the arguments separated by commas.
The format should be: "array1,[array2],..."
<list type="bullet">
<item><description><c>array1, array2, ...</c>: The arrays to append.</description></item>
</list>
</param>
<returns>A single array that has as many columns as all of the source arrays combined and as many rows as the tallest of the source arrays.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ValidateStackArgs(System.String,System.String@)">
<summary>
Validate the argument for VStack and HStack formula and return array list.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ConvertArrayToString(System.String[0:,0:],System.Int32,System.Int32)">
<summary>
Compute and return appended array as string value for VStack and HStack formula.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.VerticalStackValue(System.Collections.Generic.List{System.String})">
<summary>
Compute and append array vertically and return array as string value.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.HorizontalStackValue(System.Collections.Generic.List{System.String})">
<summary>
Compute and append array horizontally and return array as string value.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.Covariance(System.Double[],System.Double[])">
<summary>
Returns the sample covariance between two arrays.
@@ -5735,6 +5781,27 @@
<param name="arrayValues">List of array values.</param>
<returns>Resultant string after dropping specified rows and/or columns.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeExpand(System.String)">
<summary>
This function expands or pads an array to specified row and column dimensions.
</summary>
<param name="args">
A string containing the arguments separated by commas.
The format should be: "array, rows, columns, pad_with".
<list type="bullet">
<item><description><c>array</c>: The array to expand.</description></item>
<item><description><c>rows</c>: The number of rows in the expanded array. If missing, rows will not be expanded.</description></item>
<item><description><c>columns</c>: The number of columns in the expanded array. If missing, columns will not be expanded.</description></item>
<item><description><c>pad_with</c>: The value with which to pad. The default is #N/A.</description></item>
</list>
</param>
<returns>An expanded or padded array with the specified row and column dimensions.</returns>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ExpandedArray(System.String,System.String,System.String,System.String)">
<summary>
Compute and return the expanded arraay based on pad_with and rows and cols argument.
</summary>
</member>
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeWebService(System.String)">
<summary>
Return the XML content of the given document

View File

@@ -2723,6 +2723,52 @@
</param>
<returns>A number that is rounded up to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up. However, if the number or the significance is zero, zero is returned.</returns>
</member>
<member name="M:Syncfusion.Calculate.CalcEngine.ComputeVStack(System.String)">
<summary>
This function appends arrays vertically and in sequence to return a larger array.
</summary>
<param name="args">
A string containing the arguments separated by commas.
The format should be: "array1,[array2],..."
<list type="bullet">
<item><description><c>array1, array2, ...</c>: The arrays to append.</description></item>
</list>
</param>
<returns>A single array that has as many columns as all of the source arrays combined and as many rows as the tallest of the source arrays.</returns>
</member>
<member name="M:Syncfusion.Calculate.CalcEngine.ComputeHStack(System.String)">
<summary>
This function appends arrays horizontally and in sequence to return a larger array.
</summary>
<param name="args">
A string containing the arguments separated by commas.
The format should be: "array1,[array2],..."
<list type="bullet">
<item><description><c>array1, array2, ...</c>: The arrays to append.</description></item>
</list>
</param>
<returns>A single array that has as many columns as all of the source arrays combined and as many rows as the tallest of the source arrays.</returns>
</member>
<member name="M:Syncfusion.Calculate.CalcEngine.ValidateStackArgs(System.String,System.String@)">
<summary>
Validate the argument for VStack and HStack formula and return array list.
</summary>
</member>
<member name="M:Syncfusion.Calculate.CalcEngine.ConvertArrayToString(System.String[0:,0:],System.Int32,System.Int32)">
<summary>
Compute and return appended array as string value for VStack and HStack formula.
</summary>
</member>
<member name="M:Syncfusion.Calculate.CalcEngine.VerticalStackValue(System.Collections.Generic.List{System.String})">
<summary>
Compute and append array vertically and return array as string value.
</summary>
</member>
<member name="M:Syncfusion.Calculate.CalcEngine.HorizontalStackValue(System.Collections.Generic.List{System.String})">
<summary>
Compute and append array horizontally and return array as string value.
</summary>
</member>
<member name="M:Syncfusion.Calculate.CalcEngine.Covariance(System.Double[],System.Double[])">
<summary>
Returns the sample covariance between two arrays.
@@ -4799,6 +4845,27 @@
<param name="arrayValues">List of array values.</param>
<returns>Resultant string after dropping specified rows and/or columns.</returns>
</member>
<member name="M:Syncfusion.Calculate.CalcEngine.ComputeExpand(System.String)">
<summary>
This function expands or pads an array to specified row and column dimensions.
</summary>
<param name="args">
A string containing the arguments separated by commas.
The format should be: "array, rows, columns, pad_with".
<list type="bullet">
<item><description><c>array</c>: The array to expand.</description></item>
<item><description><c>rows</c>: The number of rows in the expanded array. If missing, rows will not be expanded.</description></item>
<item><description><c>columns</c>: The number of columns in the expanded array. If missing, columns will not be expanded.</description></item>
<item><description><c>pad_with</c>: The value with which to pad. The default is #N/A.</description></item>
</list>
</param>
<returns>An expanded or padded array with the specified row and column dimensions.</returns>
</member>
<member name="M:Syncfusion.Calculate.CalcEngine.ExpandedArray(System.String,System.String,System.String,System.String)">
<summary>
Compute and return the expanded arraay based on pad_with and rows and cols argument.
</summary>
</member>
<member name="M:Syncfusion.Calculate.CalcEngine.ComputeWebService(System.String)">
<summary>
Return the XML content of the given document
@@ -12755,6 +12822,20 @@
</summary>
<param name="parent">Parent workbook object.</param>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.Collections.XmlMapCollection.Add(System.String)">
<summary>
Added the XML document to the workbook using file path.
</summary>
<param name="fileName">Represents the XML file</param>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.Collections.XmlMapCollection.Add(System.IO.Stream)">
<summary>
Added the XML document to the workbook using file path.
</summary>
<param name="stream">Stream data of the xml file.</param>
<returns>Returns TRUE if the XML is valid.</returns>
<remarks>The stream should be passed as file stream to bind the xml</remarks>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.Collections.XmlMapCollection.Add(System.IO.Stream,Syncfusion.XlsIO.IWorksheet,System.Int32,System.Int32)">
<summary>
Add XmlMap object to the collection.
@@ -12772,6 +12853,13 @@
<param name="rootElement">Root element as string</param>
<returns>True if root element string exists.</returns>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.Collections.XmlMapCollection.ContainsName(System.String)">
<summary>
Checks whether given name string exists in the collection.
</summary>
<param name="name">Name element as string</param>
<returns>True if Name string exists.</returns>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.Collections.XmlMapCollection.Parse(System.Xml.XmlReader)">
<summary>
Parse and intialize mapping information.
@@ -27677,6 +27765,21 @@
Preserve format attribute name.
</summary>
</member>
<member name="F:Syncfusion.XlsIO.Implementation.XmlMap.DataBinding">
<summary>
Preserve DataBinding Element name.
</summary>
</member>
<member name="F:Syncfusion.XlsIO.Implementation.XmlMap.FileBinding">
<summary>
Preserve FileBinding attribute name.
</summary>
</member>
<member name="F:Syncfusion.XlsIO.Implementation.XmlMap.DataBindingLoadMode">
<summary>
Preserve DataBindingLoadMode attrbute name.
</summary>
</member>
<member name="F:Syncfusion.XlsIO.Implementation.XmlMap.m_sheet">
<summary>
Sheet where XmlMap imports the data.
@@ -27707,6 +27810,11 @@
XmlMap Id.
</summary>
</member>
<member name="F:Syncfusion.XlsIO.Implementation.XmlMap.m_connectionID">
<summary>
Xml connection ID.
</summary>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.XmlMap.BindXml(System.IO.Stream,Syncfusion.XlsIO.Implementation.WorkbookImpl,Syncfusion.XlsIO.IWorksheet,System.Int32,System.Int32,System.Int32)">
<summary>
Extracts XML data from the stream and import to the sheet.
@@ -27719,21 +27827,23 @@
<param name="count">Count of XmlMaps in the workbook.</param>
<returns>True if data imports to the sheet, else False.</returns>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.XmlMap.GetColumnInformation(Syncfusion.XlsIO.Implementation.Tables.ListObjectColumn,System.Xml.Schema.XmlSchema)">
<member name="M:Syncfusion.XlsIO.Implementation.XmlMap.GetColumnInformation(Syncfusion.XlsIO.Implementation.Tables.ListObjectColumn,System.Xml.Schema.XmlSchema,System.Data.DataColumn)">
<summary>
Column attributes of a table fetched from XML schema.
</summary>
<param name="tableColumn">Column of a table.</param>
<param name="xmlSchema">XML schema where the data type of column is preserved.</param>
<param name="column">Represents the column in the Data table</param>
<returns>Returns True if data have sub-element path, False otherwise.</returns>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.XmlMap.FindElement(System.String,Syncfusion.XlsIO.Implementation.Tables.ListObjectColumn,System.Collections.ICollection)">
<member name="M:Syncfusion.XlsIO.Implementation.XmlMap.FindElement(System.String,Syncfusion.XlsIO.Implementation.Tables.ListObjectColumn,System.Collections.ICollection,System.Data.DataColumn)">
<summary>
Recursion method used to find the sub element path from the root element.
</summary>
<param name="xpath">Element path from the root element.</param>
<param name="tableColumn">Table column.</param>
<param name="collection">Values collection.</param>
<param name="column">Represents the column in the Data table</param>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.XmlMap.ReadSchema(System.IO.Stream)">
<summary>
@@ -80262,6 +80372,11 @@
Sub-element path.
</summary>
</member>
<member name="F:Syncfusion.XlsIO.Implementation.Tables.ListObjectColumn.m_uniqueName">
<summary>
Represents Xml column unique name.
</summary>
</member>
<member name="F:Syncfusion.XlsIO.Implementation.Tables.ListObjectColumn.m_dataType">
<summary>
Column datatype.
@@ -80393,6 +80508,11 @@
Column datatype.
</summary>
</member>
<member name="P:Syncfusion.XlsIO.Implementation.Tables.ListObjectColumn.UniqueName">
<summary>
Gets or sets Xml column unique name.
</summary>
</member>
<member name="P:Syncfusion.XlsIO.Implementation.Tables.ListObjectColumn.IsArrayFormula">
<summary>
Indicates whether the column contains array formula
@@ -84293,6 +84413,23 @@
</code>
</example>
</member>
<member name="M:Syncfusion.XlsIO.IWorksheet.ImportXml(System.String,System.Int32,System.Int32)">
<summary>
Import XML document with specified cell position to the worksheet using file path.
</summary>
<param name="filename">FilePath of the speciifed xml file.</param>
<param name="row">Row where the data to be imported.</param>
<param name="column">Column where the data to be imported.</param>
</member>
<member name="M:Syncfusion.XlsIO.IWorksheet.ImportXml(System.IO.Stream,System.Int32,System.Int32)">
<summary>
Import XML document with specified cell position to the worksheet using stream
</summary>
<param name="stream">Stream data of the xml file.</param>
<param name="row">Row where the data to be imported.</param>
<param name="column">Column where the data to be imported.</param>
<remarks>The stream should be passed as file stream to bind the xml</remarks>
</member>
<member name="M:Syncfusion.XlsIO.IWorksheet.RemovePanes">
<summary>
Removes panes from a worksheet.
@@ -148167,6 +148304,24 @@
Copies worksheet data to the clipboard.
</summary>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.Collections.Grouping.WorksheetGroup.ImportXml(System.String,System.Int32,System.Int32)">
<summary>
Import XML document with specified cell position to the worksheet using file path.
</summary>
<param name="filename">FilePath of the speciifed xml file.</param>
<param name="row">Row where the data to be imported.</param>
<param name="column">Column where the data to be imported.</param>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.Collections.Grouping.WorksheetGroup.ImportXml(System.IO.Stream,System.Int32,System.Int32)">
<summary>
Import XML document with specified cell position to the worksheet using stream
</summary>
<param name="stream">Stream data of the xml file.</param>
<param name="row">Row where the data to be imported.</param>
<param name="column">Column where the data to be imported.</param>
<remarks>The stream should be passed as file stream to bind the xml</remarks>
<exception cref="T:System.NotSupportedException"></exception>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.Collections.Grouping.WorksheetGroup.Syncfusion#XlsIO#IWorksheet#Clear">
<summary>
Clears worksheet data. Removes all formatting and merges.
@@ -175151,6 +175306,24 @@
<param name="col">The column of the change.</param>
<param name="value">The changed value.</param>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.ExternWorksheetImpl.ImportXml(System.String,System.Int32,System.Int32)">
<summary>
Import XML document with specified cell position to the worksheet using file path.
</summary>
<param name="filename">FilePath of the speciifed xml file.</param>
<param name="row">Row where the data to be imported.</param>
<param name="column">Column where the data to be imported.</param>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.ExternWorksheetImpl.ImportXml(System.IO.Stream,System.Int32,System.Int32)">
<summary>
Import XML document with specified cell position to the worksheet using stream
</summary>
<param name="stream">Stream data of the xml file.</param>
<param name="row">Row where the data to be imported.</param>
<param name="column">Column where the data to be imported.</param>
<remarks>The stream should be passed as file stream to bind the xml</remarks>
<exception cref="T:System.NotSupportedException"></exception>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.ExternWorksheetImpl.SaveAsHtml(System.String)">
<summary>
Saves worksheet with specified filename.
@@ -215864,6 +216037,11 @@
Indicates whether the AutoFitPivotTable method is called.
</summary>
</member>
<member name="F:Syncfusion.XlsIO.Implementation.WorksheetImpl.m_isXmlMapping">
<summary>
Indicates whether importing data table for xml mapping.
</summary>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.WorksheetImpl.#cctor">
<summary>
Static constructor.
@@ -219897,6 +220075,23 @@
to image conversion. Gradient fill is partially supported.
This method is supported on Windows Forms, WPF, ASP.NET and ASP.NET MVC platforms only.</remarks>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.WorksheetImpl.ImportXml(System.String,System.Int32,System.Int32)">
<summary>
Import XML document with specified cell position to the worksheet using file path.
</summary>
<param name="filename">FilePath of the speciifed xml file.</param>
<param name="row">Row where the data to be imported.</param>
<param name="column">Column where the data to be imported.</param>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.WorksheetImpl.ImportXml(System.IO.Stream,System.Int32,System.Int32)">
<summary>
Import XML document with specified cell position to the worksheet using stream
</summary>
<param name="stream">Stream data of the xml file.</param>
<param name="row">Row where the data to be imported.</param>
<param name="column">Column where the data to be imported.</param>
<remarks>The stream should be passed as file stream to bind the xml</remarks>
</member>
<member name="M:Syncfusion.XlsIO.Implementation.WorksheetImpl.ImportDataTableWithoutCheck(System.Data.DataTable,System.Int32,System.Int32,System.Int32,System.Int32,System.Data.DataColumn[],System.Boolean)">
<summary>
Imports data table without checking arguments for correctness.