Task.Split 方法 (Project)
會將任務分割成兩個部分。
語法
運算式。分割 (StartSplitOn、 EndSplitOn)
表達 代表 Task 物件的變數。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
StartSplitOn | 必要 | Variant | 任務分割的開始日期。 如果未指定,則使用工作週期的專案預設結束時間。 |
EndSplitOn | 必要 | Variant | 任務分割結束日期。 如果未指定一次,則會使用工作週期的專案的預設開始時間。 如果 EndSplitOn 是在 使用 StartSplitOn指定的日期或之前,則不會建立分割。 |
範例
下面範例會建立指定任務的一個分割。
Sub CreateSplit()
Dim WhichTask As Long
Dim SplitFrom As Variant, SplitTo As Variant
WhichTask = InputBox("Enter the ID of the task you would like to split:")
SplitFrom = InputBox("Enter the date and time for the start of the" & _
" split: " & vbCrLf & vbCrLf & "(The default time is the end" & _
" time of the preceding working period.)")
SplitTo = InputBox("Enter the date and time for the end of the split:" & _
vbCrLf & vbCrLf & "(The default time is the start time of the next" & _
" working period.)")
ActiveProject.Tasks(WhichTask).Split SplitFrom, SplitTo
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。