Aracılığıyla paylaş


_DTE.ItemOperations Özellik

Alır ItemOperations nesne.

Ad alanı:  EnvDTE
Derleme:  EnvDTE (EnvDTE.dll içinde)

Sözdizimi

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

Özellik Değeri

Tür: EnvDTE.ItemOperations
Bir ItemOperations nesne.

Notlar

ItemOperations Nesne içeren belirli iletişim kutuları gibi doldurma için üye Öğe Ekle, Open File, ve Yeni bir dosya iletişim kutuları.

Örnekler

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

.NET Framework Güvenliği

Ayrıca bkz.

Başvuru

_DTE Arabirim

EnvDTE Ad Alanı