C

QueryInputHandlersEventArgs

Specialized EventArgs that is used for dynamic IInputHandler registration.

Members

No filters for this type

Constructors

Create a new instance.

Parameters

context: IParseContext
The current parse context.
keyDefinition: Element
The current key definition
handlers: IList<IInputHandler>
Stores the registered IInputHandler instances.

Properties

Gets the IParseContext instance that can be queried for further information.
readonlyfinal
Gets or sets whether the current GraphML attribute has been processed.
This is automatically set by calling addInputHandler, so it should be seldom necessary to set this property manually.
final

See Also

Developer's Guide
Gets the IInputHandlers that have been registered on this event argument instance so far.
readonlyfinal
Gets the key definition of the GraphML attribute.
This XML element should be queried to determine if an IInputHandler should be registered with addInputHandler
readonlyfinal

Methods

Register an IInputHandler instance for the current keyDefinition.
Calling this method automatically sets handled to true.
final

Parameters

handler: IInputHandler

See Also

Developer's Guide