共用方式為


_DTE.ItemOperations 屬性

取得 ItemOperations 物件。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

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

屬性值

型別:EnvDTE.ItemOperations
ItemOperations 物件。

備註

ItemOperations 物件包括專門用以填入對話方塊的成員,例如 [加入項目]、[開啟檔案] 和 [新增檔案] 等對話方塊。

範例

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 安全性

請參閱

參考

_DTE 介面

EnvDTE 命名空間