Main Content

renameCallback

Rename custom callbacks in Safety Analysis Manager spreadsheets

Since R2024a

Description

example

renameCallback(spreadsheet,name,newName) renames the custom callback that has the name oldName to the name newName in the Safety Analysis Manager spreadsheet spreadsheet.

Examples

collapse all

Create a new spreadsheet in the Safety Analysis Manager.

mySpreadsheet = safetyAnalysisMgr.newSpreadsheet;

Add a custom callback named myCustomCallback to the spreadsheet.

addCallback(mySpreadsheet,"myCustomCallback")

Rename the custom callback to updatedCustomCallback.

renameCallback(mySpreadsheet,"myCustomCallback","updatedCustomCallback")

Input Arguments

collapse all

Spreadsheet in the Safety Analysis Manager, specified as a Spreadsheet object.

Custom callback name, specified as a string scalar or character vector.

Data Types: char | string

Updated custom callback name, specified as a string scalar or character vector. You must use a name that follows the naming conventions for variables in MATLAB®.

Data Types: char | string

Version History

Introduced in R2024a