Task.FixedCost 屬性 (Project)
會取得或設定任務的固定成本。 可讀寫的 Variant。
語法
expression。 FixedCost
表達 代表 Task 物件的變數。
範例
下面範例會以使用者指定的數量來增加特別標示的任務之固定成本。
Sub IncreaseFixedCosts()
Dim T As Task ' Task object used in For Each loop
Dim Entry As String ' Amount to add to any existing fixed cost
Entry = InputBox$("Increase the fixed costs of marked tasks by what amount?")
' If entry is invalid, display error message and exit Sub procedure.
If Not IsNumeric(Entry) Then
MsgBox ("You didn't enter a numeric value.")
Exit Sub
End If
' Increase the fixed costs of marked tasks by the specified amount.
For Each T In ActiveProject.Tasks
If T.Marked Then
T.FixedCost = T.FixedCost + Val(Entry)
End If
Next T
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。