Rectangle Left Property Delta Engine Documentation

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

public float Left { get; set; }

Property Value

Type: Single
Remarks

Tests: DeltaEngine.Tests.Datatypes.RectangleTests
Examples

2 unit tests call DeltaEngine.Datatypes.Rectangle.Left
[Test]
public void ChangeValues()
{
    var rect = Rectangle.One;
    rect.Left = 2;
    rect.Top = 1;
    rect.Width = 2;
    rect.Height = 3;
    Assert.AreEqual(new Rectangle(2, 1, 2, 3), rect);
}
[Test]
public void BottomLeft()
{
    var rect = new Rectangle(1, 2, 10, 20);
    Assert.AreEqual(new Vector2D(1, 22), rect.BottomLeft);
}
See Also