enum Poco::XML::Event::PhaseType

Overview

#include <Event.h>

enum PhaseType
{
    CAPTURING_PHASE = 1,
    AT_TARGET       = 2,
    BUBBLING_PHASE  = 3,
};

Detailed Documentation

Enum Values

CAPTURING_PHASE

The event is currently being evaluated at the target EventTarget.

AT_TARGET

The current event phase is the bubbling phase.

BUBBLING_PHASE

The current event phase is the capturing phase.