创建得辉达定制分支

This commit is contained in:
moxiliang
2025-06-21 10:00:45 +08:00
parent dcd9b20fb0
commit c189711a92
145 changed files with 96629 additions and 5073 deletions

View File

@@ -18,6 +18,13 @@
<member name="F:NPOI.OpenXml4Net.OPC.CertificateEmbeddingOption.NOT_EMBEDDED">
The certificate in not embedded in the package.
</member>
<member name="T:NPOI.OpenXml4Net.OPC.Configuration">
Storage class for configuration storage parameters.
TODO xml syntax checking is no longer done with DOM4j parser -> remove the schema or do it ?
@author CDubettier, Julen Chable
@version 1.0
</member>
<member name="T:NPOI.OpenXml4Net.OPC.ContentTypes">
Open Packaging Convention content types (see Annex F : Standard Namespaces
and Content Types).
@@ -1014,18 +1021,16 @@
@ if a parsing error occur.
</member>
<member name="M:NPOI.OpenXml4Net.OPC.OPCPackage.Open(System.String,NPOI.OpenXml4Net.OPC.PackageAccess)">
* Open a package.
*
* @param path
* The document path.
* @param access
* PackageBase access.
* @return A PackageBase object, else <b>null</b>.
* @throws InvalidFormatException
* If the specified file doesn't exist, and a parsing error
* occur.
* @throws InvalidOperationException If the zip file cannot be opened.
* @throws InvalidFormatException if the package is not valid.
Open a package.
@param path
The document path.
@param access
PackageBase access.
@return A PackageBase object, else <b>null</b>.
@throws InvalidFormatException
If the specified file doesn't exist, and a parsing error
occur.
</member>
<member name="M:NPOI.OpenXml4Net.OPC.OPCPackage.Open(System.IO.FileInfo,NPOI.OpenXml4Net.OPC.PackageAccess)">
Open a package.
@@ -1067,6 +1072,11 @@
Path of the document.
@return A newly Created PackageBase ready to use.
</member>
<member name="M:NPOI.OpenXml4Net.OPC.OPCPackage.ConfigurePackage(NPOI.OpenXml4Net.OPC.OPCPackage)">
Configure the package.
@param pkg
</member>
<member name="M:NPOI.OpenXml4Net.OPC.OPCPackage.Flush">
Flush the package : save all.
@@ -1108,12 +1118,13 @@
@see org.apache.poi.OpenXml4Net.opc.PackageAccess
</member>
<member name="M:NPOI.OpenXml4Net.OPC.OPCPackage.ThrowExceptionIfWriteOnly">
* Throws an exception if the package access mode is in write only mode
* (PackageAccess.Write). This method is call when other methods need write
* right.
*
* @throws InvalidOperationException if a read operation is done on a write only package.
* @see org.apache.poi.OpenXml4Net.opc.PackageAccess
Throws an exception if the package access mode is in write only mode
(PackageAccess.Write). This method is call when other methods need write
right.
@throws InvalidOperationException
Throws if a read operation is done on a write only package.
@see org.apache.poi.OpenXml4Net.opc.PackageAccess
</member>
<member name="M:NPOI.OpenXml4Net.OPC.OPCPackage.GetPackageProperties">
Retrieves or Creates if none exists, core package property part.
@@ -1158,16 +1169,13 @@
The part relationship uses to retrieve the part.
</member>
<member name="M:NPOI.OpenXml4Net.OPC.OPCPackage.GetParts">
Load the parts of the archive if it has not been done yet. The
relationships of each part are not loaded.
Note - Rule M4.1 states that there may only ever be one Core
Properties Part, but Office produced files will sometimes
have multiple! As Office ignores all but the first, we relax
Compliance with Rule M4.1, and ignore all others silently too.
@return All this package's parts.
@throws InvalidFormatException if the package is not valid.
Load the parts of the archive if it has not been done yet. The
relationships of each part are not loaded.
Note - Rule M4.1 states that there may only ever be one Core
Properties Part, but Office produced files will sometimes
have multiple! As Office ignores all but the first, we relax
Compliance with Rule M4.1, and ignore all others silently too.
@return All this package's parts.
</member>
<member name="M:NPOI.OpenXml4Net.OPC.OPCPackage.CreatePart(NPOI.OpenXml4Net.OPC.PackagePartName,System.String)">
Create and Add a part, with the specified name and content type, to the
@@ -1219,17 +1227,17 @@
@see #CreatePart(PackagePartName, String)
</member>
<member name="M:NPOI.OpenXml4Net.OPC.OPCPackage.AddPackagePart(NPOI.OpenXml4Net.OPC.PackagePart)">
Add the specified part to the package. If a part already exists in the
package with the same name as the one specified, then we replace the old
part by the specified part.
Add the specified part to the package. If a part already exists in the
package with the same name as the one specified, then we replace the old
part by the specified part.
@param part
The part to add (or replace).
@return The part added to the package, the same as the one specified.
@throws InvalidOperationException
If rule M1.12 is not verified : Packages shall not contain
equivalent part names and package implementers shall neither
create nor recognize packages with equivalent part names.
@param part
The part to Add (or replace).
@return The part Added to the package, the same as the one specified.
@throws InvalidFormatException
If rule M1.12 is not verified : Packages shall not contain
equivalent part names and package implementers shall neither
Create nor recognize packages with equivalent part names.
</member>
<member name="M:NPOI.OpenXml4Net.OPC.OPCPackage.RemovePart(NPOI.OpenXml4Net.OPC.PackagePart)">
Remove the specified part in this package. If this part is relationship
@@ -1358,11 +1366,11 @@
Id of the relationship to delete.
</member>
<member name="P:NPOI.OpenXml4Net.OPC.OPCPackage.Relationships">
Retrieves all package relationships.
Retrieves all package relationships.
@return All package relationships of this package.
@throws InvalidOperationException if a read operation is done on a write only package.
@see #GetRelationshipsHelper(String)
@return All package relationships of this package.
@throws OpenXml4NetException
@see #GetRelationshipsHelper(String)
</member>
<member name="M:NPOI.OpenXml4Net.OPC.OPCPackage.GetRelationshipsByType(System.String)">
Retrieves all relationships with the specified type.
@@ -2894,22 +2902,20 @@
@param access
</member>
<member name="M:NPOI.OpenXml4Net.OPC.ZipPackage.#ctor(System.String,NPOI.OpenXml4Net.OPC.PackageAccess)">
Constructor. Opens a Zip based Open XML document from a file.
Constructor. Opens a Zip based Open XML document.
@param path
The path of the file to open or create.
@param access
The package access mode.
@throws InvalidOperationException If the zip file cannot be opened.
</member>
<member name="M:NPOI.OpenXml4Net.OPC.ZipPackage.#ctor(System.IO.FileInfo,NPOI.OpenXml4Net.OPC.PackageAccess)">
Constructor. Opens a Zip based Open XML document from a File.
Constructor. Opens a Zip based Open XML document.
@param file
The file to open or create.
@param access
The package access mode.
@throws InvalidOperationException If the zip file cannot be opened.
</member>
<member name="M:NPOI.OpenXml4Net.OPC.ZipPackage.#ctor(NPOI.OpenXml4Net.Util.ZipEntrySource,NPOI.OpenXml4Net.OPC.PackageAccess)">
Constructor. Opens a Zip based Open XML document from
@@ -2928,7 +2934,8 @@
list is not empty, it will be emptied.
@return All parts contain in this package.
@throws InvalidFormatException if the package is not valid.
@throws InvalidFormatException
Throws if the package is not valid.
</member>
<member name="M:NPOI.OpenXml4Net.OPC.ZipPackage.BuildPartName(ICSharpCode.SharpZipLib.Zip.ZipEntry)">
Builds a PackagePartName for the given ZipEntry,