 | TaskRunTimesControlInitialize Method |
Namespace:
Microsoft.Win32.TaskScheduler
Assembly:
Microsoft.Win32.TaskSchedulerEditor (in Microsoft.Win32.TaskSchedulerEditor.dll) Version: 2.10.1
Syntaxpublic void Initialize(
Task task = null,
DateTime? startDate = null,
DateTime? endDate = null
)
Public Sub Initialize (
Optional task As Task = Nothing,
Optional startDate As DateTime? = Nothing,
Optional endDate As DateTime? = Nothing
)
public:
void Initialize(
Task^ task = nullptr,
Nullable<DateTime> startDate = nullptr,
Nullable<DateTime> endDate = nullptr
)
Request Example
View SourceParameters
- task (Optional)
- Type: Microsoft.Win32.TaskSchedulerTask
The task to display. - startDate (Optional)
- Type: SystemNullableDateTime
The date to begin looking for run times. - endDate (Optional)
- Type: SystemNullableDateTime
The date to end looking for run times.
See Also