InspectionPackage
SpreadsheetRootPackage.InspectionPackage property
获取包含文档检查结果的元数据包。 该包包含有关文档部分的信息,在某些情况下可以将其视为元数据。
public SpreadsheetInspectionPackage InspectionPackage { get; }
适当的价值
包含文档检查结果的元数据包。
评论
了解更多
例子
此代码片段显示如何检查电子表格文档。
using (Metadata metadata = new Metadata(Constants.InputXls))
{
var root = metadata.GetRootPackage<SpreadsheetRootPackage>();
if (root.InspectionPackage.Comments != null)
{
foreach (var comment in root.InspectionPackage.Comments)
{
Console.WriteLine(comment.Author);
Console.WriteLine(comment.Text);
Console.WriteLine(comment.SheetNumber);
Console.WriteLine(comment.Row);
Console.WriteLine(comment.Column);
}
}
if (root.InspectionPackage.DigitalSignatures != null)
{
foreach (var signature in root.InspectionPackage.DigitalSignatures)
{
Console.WriteLine(signature.CertificateSubject);
Console.WriteLine(signature.Comments);
Console.WriteLine(signature.SignTime);
// ...
}
}
if (root.InspectionPackage.HiddenSheets != null)
{
foreach (var sheet in root.InspectionPackage.HiddenSheets)
{
Console.WriteLine(sheet.Name);
Console.WriteLine(sheet.Number);
}
}
}