Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

IControlText Interface

Declares members of test controls that provides an editable text.

Namespace: DevExpress.EasyTest.Framework

Assembly: DevExpress.EasyTest.v21.2.dll

NuGet Package: DevExpress.EasyTest

Declaration

public interface IControlText :
    IControlReadOnlyText

Remarks

Generally, you do not need to implement this interface. It is implemented by built-in test controls in the DevExpress.ExpressApp.EasyTest.WinAdapter.v21.2.dll and DevExpress.ExpressApp.EasyTest.WebAdapter.v21.2.dll assemblies. You can pass this interface as the ITestControl.GetInterface<T> generic parameter to access a test control that provides an editable text (see How to: Implement a Custom EasyTest Command) topic. The complete list of interfaces that are implemented by built-in test controls is provided in the ITestControl topic.

See Also