VideoTests PlayVideoOnClick Method Delta Engine Documentation

Namespace: DeltaEngine.Multimedia.Tests
Assembly: DeltaEngine.Multimedia.Tests (in DeltaEngine.Multimedia.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void PlayVideoOnClick()
Examples

[Test]
public void PlayVideoOnClick()
{
    new FontText(Font.Default, "Click to Play", Rectangle.One);
    new Command(() => { testVideo.Play(); }).Add(new MouseButtonTrigger());
}
See Also