2024 April Release

Class FSCVAPP@1.1001:UIClient Permanent link for this heading

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 the implementation of the HandleClientActionMethod method. 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.

Class Hierarchy

Object > ComponentObject > UIClient