Partager via


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

Voir aussi

Référence

Document Interface

EnvDTE, espace de noms