Task.Name 屬性(專案)Task.Name property (Project)
取得或設定 Task 物件的名稱。Gets or sets the name of a Task object. 可讀寫 的字串 。Read/write String.
語法Syntax
運算式。名稱expression.Name
_運算式_代表Task物件的變數。expression A variable that represents a Task object.
範例Example
下面範例會顯示包含指定文字的任務名稱。The following example displays the task names that contain the specified text.
Sub NameExample()
Dim t As Task
Dim x As String
Dim y As String
x = InputBox$("Search for tasks that include the following text in their names:")
If Not x = "" Then
For Each t In ActiveProject.Tasks
If InStr(1, t.Name, x, 1) Then
y = y & vbCrLf & t.ID & ": " & t.Name
End If
Next t
If Len(y) = 0 Then
MsgBox "No tasks with the text " & x & " found in the project", vbExclamation
Else
MsgBox y
End If
End If
End Sub
支援和意見反應Support and feedback
有關於 Office VBA 或這份文件的問題或意見反應嗎?Have questions or feedback about Office VBA or this documentation? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.