PercentageBar Minimum Property Delta Engine Documentation

Namespace: DeltaEngine.Scenes.Controls
Assembly: DeltaEngine.Scenes (in DeltaEngine.Scenes.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public float Minimum { get; set; }

Property Value

Type: Single
Remarks

Tests: DeltaEngine.Scenes.Tests.Controls.PercentageBarTests
Examples

4 unit tests call DeltaEngine.Scenes.Controls.PercentageBar.Minimum
[Test, CloseAfterFirstFrame]
public void DefaultValues()
{
    Assert.AreEqual(0, bar.Minimum);
    Assert.AreEqual(100, bar.Maximum);
    Assert.AreEqual(100, bar.Value);
    Assert.AreEqual(Center, bar.DrawArea);
    Assert.AreEqual(Width, bar.MaxWidth);
    Assert.AreEqual(HighColor, bar.Color);
    Assert.AreEqual(PercentileColors, bar.PercentileColors);
    Assert.AreEqual(PercentageBar.HorizontalAlignment.Left, bar.Alignment);
}
[Test, CloseAfterFirstFrame]
public void ChangeMinimum()
{
    bar.Minimum = 10;
    Assert.AreEqual(10, bar.Minimum);
}
[Test, CloseAfterFirstFrame]
public void ValueCannotGoBelowMinimum()
{
    bar.Value = -10;
    Assert.AreEqual(0, bar.Value);
    Assert.AreEqual(0, bar.DrawArea.Width);
    Assert.AreEqual(Color.Red, bar.Color);
}
See Also