edit Overview


This object wraps the Windows edit control. It does not have methods or properties of its own, but it inherits the common window functionality from the wnd object.

Example

// Test get/set text
    Edit.value = "New edit text";
    if (Edit.value != "New edit text")
        Env.LogError("Could not set edit control text");
		

Common Used Properties (inherited)

value Gets/sets the text in the edit control.

 


© 2003 Lightweight Technologies. All rights reserved.