|
|
|
|
|
SearchValue (Property) In french: ValeurRecherche
The SearchValue property is used to get and change the value of the search field in an Action Bar. // Event "Whenever modifying the search" of an Action Bar control n = TableSearch(TABLE_Customer.COL_NAME, ACTB_ACTIONBAR.SearchValue) IF n!= -1 THEN TABLE_Customer = n END
Syntax
Retrieving the value of the search control Hide the details
<Result> = <Action Bar control>.SearchValue
<Result>: Character string Value of the search control of the Action Bar. <Action Bar control>: Control name Name of the Action Bar control to use.
Modifying the value of the search control Hide the details
<Action Bar control>.SearchValue = <Value>
<Action Bar control>: Control name Name of the Action Bar control to use. <Value>: Character string New value for the search control.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|