Proprietà XMLNodes.Creator
Ottiene l'applicazione in cui è stato creato il controllo XMLNodes.
Spazio dei nomi: Microsoft.Office.Tools.Word
Assembly: Microsoft.Office.Tools.Word (in Microsoft.Office.Tools.Word.dll)
Sintassi
'Dichiarazione
ReadOnly Property Creator As Integer
Get
int Creator { get; }
Valore proprietà
Tipo: System.Int32
Applicazione in cui è stato creato il controllo XMLNodes.
Note
Poiché l'insieme XMLNodes è stato creato in Microsoft Office Word, questa proprietà restituisce il numero esadecimale 4D535744, che rappresenta la stringa "MSWD". Questo valore può anche essere rappresentato dalla costante wdCreatorCode.
Esempi
Nell'esempio di codice seguente viene utilizzata la proprietà Count per visualizzare se in Microsoft Office Word è stato creato un controllo XMLNodes. In questo esempio si suppone che il documento corrente contenga un controllo XMLNodes denominato InsertMemoToNodes.
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.");
}
}
Sicurezza di .NET Framework
- Attendibilità totale per il chiamante immediato. Impossibile utilizzare questo membro in codice parzialmente attendibile. Per ulteriori informazioni, vedere Utilizzo di librerie da codice parzialmente attendibile.