Data Update Functions

These functions change the data in fields.

lrvtc_retrieve_messages1 and lrvtc_retrieve_row change data as a side effect of popping data from the first row. They change data by shifting data up by a row. lrvtc_rotate* functions move data from the top to the bottom of the table.

The C Language references include the information on the C# and the Java functions.

C LanguageC# LanguageJava LanguageJavaScriptDescription
lrvtc_clear_column vts.clear_column Lrvtc.clear_columnlrvtc.clearColumnClears all data in a column.
lrvtc_clear_message vts.clear_message Lrvtc.clear_messagelrvtc.clearMessageClears the data in a field.
lrvtc_clear_row vts.clear_row Lrvtc.clear_rowlrvtc. clearRowClears the data in a row.
lrvtc_increment vts.increment Lrvtc.increment lrvtc.incrementIncrements a counter stored in a field.
lrvtc_retrieve_message vts.retrieve_message Lrvtc.retrieve_messagelrvtc.retrieveMessagePops the first field from a column.
lrvtc_retrieve_messages1vts.retrieve_messagesLrvtc.retrieve_messages1lrvtc.retrieveMessages1Pops the first fields from specified columns.
lrvtc_retrieve_row vts.retrieve_row Lrvtc.retrieve_rowlrvtc.retrieveRowPops the first fields from all columns.
lrvtc_rotate_messagevts.rotate_messageLrvtc.rotate_messagelrvtc.rotateMessageRetrieves the first field from the specified column and moves the value to the bottom.
lrvtc_rotate_messages1vts.rotate_messagesLrvtc.rotate_messages1lrvtc.rotateMessages1Retrieves the first field from the specified column and moves the value to the bottom
lrvtc_rotate_rowvts.rotate_rowLrvtc.rotate_rowlrvtc.rotateRowRetrieves the first row and moves the values to the bottom.
lrvtc_send_if_unique vts.send_if_unique Lrvtc.send_if_uniquelrvtc.sendIfUniqueSets the last field of a column to a value if the value does not exist in the column.
lrvtc_send_message vts.send_message Lrvtc.send_messagelrvtc.sendMessageSets the last field of a column to a value.
lrvtc_send_row1 vts.send_row1 Lrvtc.send_row1lrvtc.sendRow1Sets the data in multiple columns.
lrvtc_update_all_message_ifequals vts.update_all_message_ifequals Lrvtc.update_all_message_ifequalslrvtc.updateAllMessageIfequalsReplaces a value in the specified columns.
lrvtc_update_message vts.update_message Lrvtc.update_messagelrvtc.updateMessageReplaces the data in a field.
lrvtc_update_message_ifequals vts.update_message_ifequals Lrvtc.update_message_ifequalslrvtc.updateMessageIfequalsReplaces the data in a field if the current data equals a given value.
lrvtc_update_row1 vts.update_row Lrvtc.update_row1lrvtc.updateRow1Replaces the data in a row.