Sdílet prostřednictvím


DTE2.ItemOperations – vlastnost

Získává ItemOperations objektu.

Obor názvů:  EnvDTE80
Sestavení:  EnvDTE80 (v EnvDTE80.dll)

Syntaxe

'Deklarace
ReadOnly Property ItemOperations As ItemOperations
    Get
ItemOperations ItemOperations { get; }
property ItemOperations^ ItemOperations {
    ItemOperations^ get ();
}
abstract ItemOperations : ItemOperations
function get ItemOperations () : ItemOperations

Hodnota vlastnosti

Typ: EnvDTE.ItemOperations
ItemOperations Objektu.

Implementuje

_DTE.ItemOperations

Poznámky

ItemOperations Objekt obsahuje členy, které jsou specifické pro vyplnění dialogových oken, například Přidat položku, Otevřít soubor, a Nový soubor dialogy.

Příklady

Sub ItemOperationsExample()
  Dim objTextDoc As TextDocument
  Dim objEP As EditPoint
  
  ' Create a new text document.
  Call DTE2.ItemOperations.NewFile("General\Text File")
  'Get a handle to the new document.
  Set objTextDoc = DTE2.ActiveDocument.Object("TextDocument")
  Set objEP = objTextDoc.StartPoint.CreateEditPoint
  'Create an EditPoint and add some text.
  objEP.Insert "A test sentence."
End Sub

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

DTE2 Rozhraní

ItemOperations – přetížení

EnvDTE80 – obor názvů