TaskList.SetTaskReminder Method

Set a reminder for some task
Public Shared Sub SetTaskReminder( _ 
ByVal task_id As EntityID, _ 
ByVal reminder_type As TaskReminderType, _ 
ByVal delta As Integer, _ 
ByVal target_id As EntityID, _ 
ByVal target_type As EntityType, _ 
ByVal creator_id As EntityID, _ 
ByVal is_recurring As Boolean, _ 
ByVal remind_even_after_start As Boolean, _ 
ByVal remind_even_after_finish As Boolean, _ 
ByVal db As IDatabase
)
This language is not supported or no code example is available.
public static void SetTaskReminder( 
EntityID task_id
TaskReminderType reminder_type
int delta
EntityID target_id
EntityType target_type
EntityID creator_id
bool is_recurring
bool remind_even_after_start
bool remind_even_after_finish
IDatabase db 
)
This language is not supported or no code example is available.
public:  
static void SetTaskReminder( 
EntityID^ task_id
TaskReminderType reminder_type
int delta
EntityID^ target_id
EntityType target_type
EntityID^ creator_id
bool is_recurring
bool remind_even_after_start
bool remind_even_after_finish
IDatabase^ db 
)
This language is not supported or no code example is available.
public static function SetTaskReminder( 
task_id : EntityID
reminder_type : TaskReminderType
delta : int
target_id : EntityID
target_type : EntityType
creator_id : EntityID
is_recurring : boolean
remind_even_after_start : boolean
remind_even_after_finish : boolean
db : IDatabase 
);
This language is not supported or no code example is available.

Parameters

task_id
EntityID

the task id

reminder_type
TaskReminderType

the reminder type

delta
int

the delta on the reminder

target_id
EntityID

the target id

target_type
EntityType

the target type - must be group, user or contact

creator_id
EntityID

the id of the user creating the reminder

is_recurring
bool

Is this a daily recurring reminder?

remind_even_after_start
bool

<default>

remind_even_after_finish
bool

<default>

db
IDatabase

the database to use

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1

In this article

Definition