Skip to content

Win32Text

This is generic Win32 edit box. Use DoSetText to set the value of the edit box and GetText to read current value.

Extends SeSSimulatedObject

Behavior Pattern: Win32TextEditable

Property Summary

Property Description Getter Setter
Text Text of the object, 'false' if text can not be read. GetText SetText

Action Summary

Action Description
DoSetText Sets text value of this object.

Property Detail

Text

Text of the object, 'false' if text can not be read.

Type: string

Accessors: GetText, SetText

value = SeS('SomeWin32Text').GetText()

SeS('SomeWin32Text').SetText(value)

Action Detail

DoSetText

Sets text value of this object.

SeS('SomeWin32Text').DoSetText(val)

Parameters:

Name Type Description
val string Text value.

Returns:

boolean: 'true' if success, 'false' otherwise.