NUnitForms Class Library

ControlTester.Item Property

Convenience accessor / mutator for any nonsupported property on a control to test.

[Visual Basic]
Overloads Public Default Property Item( _
   ByVal name As String _
) As Object
[C#]
public object this[
   string name
] {get; set;}

Parameters

name
Missing <param> documentation for name

Example

ControlTester t = new ControlTester("t"); t["Text"] = "a"; AssertEqual("a", t["Text"]);

See Also

ControlTester Class | NUnit.Extensions.Forms Namespace | ControlTester.Item Overload List