Class FSCVAPP@1.1001:UIClient
Defines an object class used as the context object for client actions.
The SimpleReference of the defined action identifies the client action to be executed on the
client. The optional parameters of the defined action define the parameters for the client
action when invoked on the client. A client action must use one of the following method
definitions:
In order for a client action to be executable, there must exist a client-side implementation.
Exemplary usage:
private MyClientAction(string param) {
variant UIClient {
impl = #HandleClientActionMethod;
}
}
To invoke a defined client action, the
Client
instance is intended
to be used.
Class Hierarchy
Object >
ComponentObject >
UIClient