다음을 통해 공유


ActionEventArgs.Properties 속성

스마트 태그에 대해 구현된 모든 속성을 가져옵니다.

네임스페이스:  Microsoft.Office.Tools.Word
어셈블리:  Microsoft.Office.Tools.Word(Microsoft.Office.Tools.Word.dll)

구문

‘선언
ReadOnly Property Properties As ISmartTagProperties
    Get
ISmartTagProperties Properties { get; }

속성 값

형식: Microsoft.Office.Interop.SmartTag.ISmartTagProperties
스마트 태그에 대해 구현된 모든 속성이 들어 있는 Microsoft.Office.Interop.SmartTag.ISmartTagProperties 개체입니다.

설명

Microsoft.Office.Interop.SmartTag.ISmartTagProperties 인터페이스는 Microsoft Office 스마트 태그 SDK(소프트웨어 개발 키트)에서 제공합니다. 코드에 이 인터페이스를 사용하려면 Add Reference 대화 상자의 .NET 탭에서 Microsoft.Office.Interop.SmartTag에 대한 참조를 추가합니다.

예제

다음 코드 예제에서는 Click 이벤트에 대한 처리기를 보여 줍니다. 이벤트 처리기는 Properties 속성을 사용하여 스마트 태그 속성의 KeyedCollection에서 속성 값을 가져옵니다. 이 코드 예제는 SmartTag 인터페이스에 대해 제공되는 보다 큰 예제의 일부입니다. 이 예제에서는 참조 추가 대화 상자의 .NET 탭에서 Microsoft.Office.Interop.SmartTag에 대한 참조를 추가한 것으로 가정합니다.

이 예제는 문서 수준 사용자 지정을 위한 것입니다.

' This action displays the property value for the term.
Private Sub Action1_Click(ByVal sender As Object, _
    ByVal e As ActionEventArgs) Handles Action1.Click

    Dim propertyBag As ISmartTagProperties = e.Properties
    Dim key As String = "Key1"
    MsgBox("The corresponding value of " & _
        key & " is: " & propertyBag.Read(key))
End Sub
// This action displays the property value for the term.
private void Action1_Click(object sender, 
    Microsoft.Office.Tools.Word.ActionEventArgs e)
{
    ISmartTagProperties propertyBag = e.Properties;
    string key = "Key1";
    MessageBox.Show("The corresponding value of " + key + 
        " is: " + propertyBag.get_Read(key));
}

.NET Framework 보안

  • 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.

참고 항목

참조

ActionEventArgs 인터페이스

Microsoft.Office.Tools.Word 네임스페이스