Document.Object, méthode
Retourne une interface ou un objet accessible par son nom au moment de l'exécution.
Espace de noms : EnvDTE
Assembly : EnvDTE (dans EnvDTE.dll)
Syntaxe
'Déclaration
Function Object ( _
ModelKind As String _
) As Object
Object Object(
string ModelKind
)
Object^ Object(
[InAttribute] String^ ModelKind
)
abstract Object :
ModelKind:string -> Object
function Object(
ModelKind : String
) : Object
Paramètres
- ModelKind
Type : System.String
Facultatif.Type de modèle de données.Les seules valeurs utilisées sont "TextDocument" et "Document".
Valeur de retour
Type : System.Object
Objet.
Exemples
Public Sub AddText()
Dim doc As Document = ActiveDocument
If Not doc Is Nothing Then
Dim textDoc As TextDocument = doc.Object("TextDocument")
If Not textDoc Is Nothing Then
textDoc.CreateEditPoint().Insert("MyText")
End If
End If
End Sub
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.