Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Events/EventPhase.cs @ 12762

Last change on this file since 12762 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 1.2 KB
Line 
1using System;
2
3namespace SharpVectors.Dom.Events
4{
5  /// <summary>
6  /// An integer indicating which phase of the event flow is being processed
7  /// as defined in
8  /// <see href="http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/events.html#Events-flow">DOM event flow</see>.
9  /// </summary>
10  public enum EventPhase
11  {
12    /// <summary>
13    /// (DOM Level 2)
14    /// The current event phase is the
15    /// <see href="http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/glossary.html#dt-capture-phase">capture phase</see>.
16    /// </summary>
17    CapturingPhase = 1,
18   
19    /// <summary>
20    /// (DOM Level 2)
21    /// The current event is in the
22    /// <see href="http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/glossary.html#dt-capture-phase">target phase</see>,
23    /// i.e. it is being evaluated at the
24    /// <see href="http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/glossary.html#dt-event-target">event target</see>.
25    /// </summary>
26    AtTarget = 2,
27   
28    /// <summary>
29    /// (DOM Level 2)
30    /// The current event phase is the
31    /// <see href="http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/glossary.html#dt-bubbling-phase">bubbling phase</see>.
32    /// </summary>
33    BubblingPhase = 3
34  }
35}
Note: See TracBrowser for help on using the repository browser.