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);
}
}
}