WorkbookBase.Signatures 属性
获取工作簿的数字签名的集合。
命名空间: Microsoft.Office.Tools.Excel
程序集: Microsoft.Office.Tools.Excel.v4.0.Utilities(在 Microsoft.Office.Tools.Excel.v4.0.Utilities.dll 中)
语法
声明
Public ReadOnly Property Signatures As SignatureSet
public SignatureSet Signatures { get; }
属性值
类型:Microsoft.Office.Core.SignatureSet
一个 Microsoft.Office.Core.SignatureSet 集合,包含工作簿的数字签名。
备注
若要对 Excel 工作簿进行数字签名并验证这些工作簿中的其他签名,需要 Microsoft CryptoAPI 和一个唯一的数字签名证书。 CryptoAPI 随 Microsoft Internet Explorer 4.01 或更高版本一起安装。 可以从证书颁发机构获取数字签名证书。
示例
下面的代码示例获取附加到当前工作簿的签名数,并向用户显示一条相应的消息。
此示例针对的是文档级自定义项。
Private Sub GetSignatures()
If Me.Signatures.Count = 0 Then
MessageBox.Show( _
"There are no signatures that are attached to the " _
+ "current workbook.")
Else
MessageBox.Show( _
"Number of signatures attached to the current workbook: " _
+ Me.Signatures.Count.ToString())
End If
End Sub
private void GetSignatures()
{
if (this.Signatures.Count == 0)
{
MessageBox.Show(
"There are no signatures that are attached to the "
+ "current workbook.");
}
else
{
MessageBox.Show(
"Number of signatures attached to the current workbook: "
+ this.Signatures.Count.ToString());
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。