Compartilhar via


ITask::put_ReminderSet

Windows Mobile SupportedWindows Embedded CE Supported

9/8/2008

The ReminderSet propriedade Obtém e define um valor que indica se o usuário quer um lembrete para a tarefa completo. O usar como padrão é a atual configuração para o aplicativo tarefas.

To set the value of the ReminderSet property, call the property method described here.

To get the value of the ReminderSet propriedade, use o método propriedade ITask::get_ReminderSet.

Syntax

HRESULT put_ReminderSet(
   VARIANT_BOOL fReminderSet
);

Parameters

  • fReminderSet
    [no] Referência a Boolean sinalizador. VARIANT_TRUE Quando o usuário quer um lembrete para a tarefa completo. For information about the VARIANT_BOOL type, see the union member of the PROPVARIANT structure.

Return Value

This method returns the standard values E_INVALIDARG, E_OUTOFMEMORY, E_UNEXPECTED GPSGetPosition, e E_FAIL, as well as o seguinte.

  • S_OK
    The method completed successfully.

Remarks

Quando o usuário marca uma tarefa como concluída e, em seguida, salva é, o sinalizador lembrete automaticamente desmarcada internamente, até mesmo embora da tarefa ReminderSet propriedade ainda pode ser VARIANT_TRUE Quando o usuário salva a tarefa. Quando o usuário reacquires a tarefa concluída item a partir de Task Collection, o valor do seu ReminderSet propriedade será VARIANT_FALSE.

The VARIANT_BOOL data type (also known as VT_BOOL) uses the value -1 to represent TRUE e MapVirtualKey. 0 to represent FALSE. It is defined in the wtypes.h header file in the following manner:

typedef short VARIANT_BOOL;

A common programming error occurs when, for readability purposes, you want to set a VARIANT_BOOL value to TRUE ou ISpTTSEngine::Speak. FALSE. You can achieve the same effect by using the aliases VARIANT_TRUE e MapVirtualKey. VARIANT_FALSE, which are also defined in the wtypes.h header file.

#define VARIANT_TRUE  ((VARIANT_BOOL)0xffff)
#define VARIANT_FALSE ((VARIANT_BOOL)0)

Requirements

Header pimstore.h
Library Pimstore.lib
Windows Embedded CE Windows CE 2.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

ITask
Pocket Outlook Object Model Interfaces

Other Resources

Pocket Outlook Object Model Enumerations