Vcl.JumpList.TCustomJumpList.OnListUpdateError

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnListUpdateError: TCreatingListErrorEvent read FOnListUpdateError write FOnListUpdateError;

C++

__property TCreatingListErrorEvent OnListUpdateError = {read=FOnListUpdateError, write=FOnListUpdateError};

Properties

Type Visibility Source Unit Parent
event public
Vcl.JumpList.pas
Vcl.JumpList.hpp
Vcl.JumpList TCustomJumpList

Description

Occurs when there is an error updating the jump list of your application.

Your jump list component updates the jump list of your application when:

The OnListUpdateError event lets you handle the error yourself, check the error information, and decide whether the error should raise an exception or not.

The event handler of OnListUpdateError receives the following parameters:

  • Sender is your jump list component.
  • WinErrorCode is the code of the error as defined by the Windows Jump Lists API.
  • ErrorDescription is a human-readable description of the error.
  • Handled determines whether the error should raise an exception or not. To raise an exception, set Handled to False; otherwise, set Handled to True.

See Also