WorkbookBase.Signatures 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
통합 문서의 디지털 서명 컬렉션을 가져옵니다.
public:
property Microsoft::Office::Core::SignatureSet ^ Signatures { Microsoft::Office::Core::SignatureSet ^ get(); };
public Microsoft.Office.Core.SignatureSet Signatures { get; }
member this.Signatures : Microsoft.Office.Core.SignatureSet
Public ReadOnly Property Signatures As SignatureSet
속성 값
통합 문서의 디지털 서명이 포함된 Microsoft.Office.Core.SignatureSet 컬렉션입니다.
예제
다음 코드 예제에서는 현재 통합 문서에 연결된 서명 수를 가져오고 사용자에게 적절한 메시지를 표시합니다.
이 예제는 문서 수준 사용자 지정을 위한 것입니다.
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());
}
}
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
설명
Excel 통합 문서에 디지털 서명하고 다른 서명을 확인하려면 Microsoft CryptoAPI와 고유한 디지털 서명 인증서가 필요합니다. CryptoAPI는 Microsoft Internet Explorer 4.01 이상과 함께 설치됩니다. 인증 기관에서 디지털 서명 인증서를 가져올 수 있습니다.