ClientSide.CmdCertRenewAck (METH) ¶ METHOD CmdCertRenewAck Execution of command: Check if certificate renewal is acknowledged It sends the request to the server, along with the client error InOut: Scope Name Type Comment Input pDataTrs POINTER TO BYTE Pointer to the data to transmit iCount DINT Number of bytes to transmit Output xDone BOOL Operation done, with or without errors error INT Error
ClientSide.CmdCertRenewEnd (METH) ¶ METHOD CmdCertRenewEnd Execution of command: Check if certificate renewal is finished It sends the request to the server, along with the thumbprint InOut: Scope Name Type Comment Input pDataTrs POINTER TO BYTE Pointer to the data to transmit iCount DINT Number of bytes to transmit Output xDone BOOL Operation done, with or without errors error INT Error
ClientSide.CmdRemoveClient (METH) ¶ METHOD CmdRemoveClient Execution of command: Remove client Send to server the information that a client has been removed InOut: Scope Name Type Comment Input pDataTrs POINTER TO ARRAY [0..0] OF StructCmdRemoveClient Pointer to the data to transmit iCount INT Number of structure to transmit Output xDone BOOL Operation done, with or without errors error INT Error
ClientSide.CmdTest (METH) ¶ METHOD CmdTest Execution of command: Test used for internal test InOut: Scope Name Type Comment Input iTstType INT Output xDone BOOL Operation done, with or without errors error INT Error
ClientSide.CmdValueChanged (METH) ¶ METHOD CmdValueChanged Send to server the information that value has been changed in variables InOut: Scope Name Type Comment Input pDataTrs POINTER TO BYTE Pointer to the data to transmit diCount DINT Number of bytes to transmit Output xDone BOOL Operation done, with or without errors error INT Error
ClientSide.ClientCreated (METH) ¶ METHOD ClientCreated Notification, that a client has been created InOut: Scope Name Type Comment Input pClientData POINTER TO VisuStructClientData A pointer to a VisuStructClientData structure identifying the client, that has been created
ClientSide.ClientDestroyed (METH) ¶ METHOD ClientDestroyed Notification, that a client has been destroyed InOut: Scope Name Type Comment Input pClientData POINTER TO VisuStructClientData A pointer to a VisuStructClientData structure identifying the client, that has been destroyed
ClientSide.ValueChanged (METH) ¶ METHOD ValueChanged : BOOL This notification arrives when a variable is changed InOut: Scope Name Type Comment Return ValueChanged BOOL Input pClient POINTER TO VisuStructClientData A pointer to the client structure were the event occurred. pClient can be 0 when eType = ConditionVariable itfVisualization IVisualisation The visualization from which the value changed event is called. Is always set when pClient <> 0 itfVisualizationDialog IVisualisationDialog If the value changed event is called from a dialog this parameter is set (<> 0). paiInputPosition POINTER TO ARRAY [0..9] OF INT The input position in the visualization is a list of element ids. A list is necessary because of element in frames. -1 means not set. Example: 41,23,-1,-1,… Frame element with id 41 in visualization itfVisualization.GetName(TRUE); Element with id 23 in the referenced visualization of the frame paiInputFrameIndices POINTER TO ARRAY [0..9] OF INT A list of frame indices for the input position. This information is necessary to know the referenced visualization. Example: 1,-1,-1,… In the frame element the second visualization in the list of frame selection was set. pbOldValue POINTER TO BYTE A pointer to the old value. The pointer is not necessarily the same than the pbVarPointer. pbNewValue POINTER TO BYTE A pointer to the new value. The pointer is not necessarily the same than the pbVarPointer. pbVarPointer POINTER TO BYTE A pointer to the variable which was changed. Can be null if pPropertyInfo is set. pPropertyInfo POINTER TO PropertyInfo A pointer to the property info of the variable which was changed. The value is only set when the value changed event comes from a property. dwVarSize DWORD The size of the variable which was changed. eTypeClass __SYSTEM.TYPE_CLASS The type of the variable which was changed. eType VisuEnumValueChangedType The type of the value changed event. This type can be used to filter events. dwDialogId DWORD If the value changed event comes from a dialog the dialog id is necessary to know the context from which element the dialog was opened. This can be necessary to know the corresponding variables of the dialog. Normally the following events occur: Event with type OpenDialogPositionInfo - To know the element where the dialog was opened. Event with type Default - ValueChange event for the changed variables Event with type CloseDialogPositionInfo - To know that the dialog was really closed. dwParam1 DWORD If the value changed event comes from a key event dwParam1 contains the key code. dwParam2 DWORD If the value changed event comes from a key event dwParam2 contains the modifier code.
StructTicket (STRUCT) ¶ TYPE StructTicket : STRUCT Structure of ticket InOut: Name Type Comment dwExternId DWORD External ID sTicket TicketType Ticket tCreation TIME Creation time
StructValueChanged (STRUCT) ¶ TYPE StructValueChanged : STRUCT Structure that contains the data of value changed in variables InOut: Name Type Comment uiID UINT The entry ID eTypeClass __SYSTEM.TYPE_CLASS The type of the variable which was changed. lwValue LWORD The new value pbValue POINTER TO BYTE The new value in case of it is more long than LWORD (e.g.: string or wstring) uiSzValue UINT The size of the value, either in “lwValue” or in “pbValue” wArea WORD The area of the variable which was changed. lwOffset LWORD The offset of the variable which was changed.