Description: | True if this task is private. You may mark a task as private by setting this property. You may both set and get this property. |
Type: | Boolean |
Default: | False |
Example: |
Dim user As Object
Dim tasks As Object
Dim task As Object
Set session = CreateObject("OfficeTalk.Session")
Set user = Call session.Logon(login name, password)
Set tasks = user.tasks
Set task = tasks.Add
task.Private = True
If task.Private Then
MsgBox "This is a private task"
End If