XMLNodes.Creator 属性

获取在其中创建 XMLNodes 控件的应用程序。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word(在 Microsoft.Office.Tools.Word.dll 中)

语法

声明
ReadOnly Property Creator As Integer
    Get
int Creator { get; }

属性值

类型:System.Int32
在其中创建 XMLNodes 控件的应用程序。

备注

因为 XMLNodes 集合是在 Microsoft Office Word 中创建的,所以此属性返回十六进制数 4D535744,该数字表示字符串“MSWD”。此值还可以由常数 wdCreatorCode 表示。

示例

下面的代码示例使用 Count 属性显示 XMLNodes 控件是否是在 Microsoft Office Word 中创建的。 此示例假定当前文档包含一个名为 InsertMemoToNodes 的 XMLNodes 控件。

Private Sub DisplayCreator()
    If Me.InsertMemoToNodes.Creator = _
        Word.WdConstants.wdCreatorCode Then

        MsgBox("InsertMemoToNodes was created " & _
            "in Microsoft Office Word.")
    Else
        MsgBox("InsertMemoToNodes was not created " & _
            " in Microsoft Office Word.")
    End If

End Sub
private void DisplayCreator()
{
    if (this.InsertMemoToNodes.Creator ==
        (int)Word.WdConstants.wdCreatorCode)
    {
        MessageBox.Show("InsertMemoToNodes was created " +
            "in Microsoft Office Word.");
    }
    else
    {
        MessageBox.Show("InsertMemoToNodes was not created " +
            " in Microsoft Office Word.");
    }
}

.NET Framework 安全性

请参见

参考

XMLNodes 接口

Microsoft.Office.Tools.Word 命名空间