Poison-ui

A cross-platform desktop/mobile UI engine written in D using dsfml

View project on GitHub

Dub version

poison.core.eventargs.changeeventargs

Source

Module for change event args handling.

Authors:

  Jacob Jensen

License:

  https://github.com/PoisonEngine/poison-ui/blob/master/LICENSE

public:



public class ChangeEventArgs(T) : EventArgs


        public:



Event args for value changes.


public this(T oldValue, T newValue);


Creates a new change event args.

Parameters:

oldValueThe old value.
newValueThe new value.

public @property T oldValue();


Gets the old value.


public @property T newValue();


Gets the new value.


Generated by venom - Poison Engine's Documentation Generator