Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

axlSetHistoryName

axlSetHistoryName ( 
x_historyHandle 
t_newHistoryName
) 
=> t / nil 

Description

Sets a new name for the specified history.

Arguments

x_historyHandle

Handle to the history that you want to rename.

t_newHistoryName

New name to be set for the history.

Value Returned

t

History name is changed successfully.

nil

History name is not changed.

Examples

Renames the specified history to newHistoryName.

session=axlGetWindowSession()
=> "session0"
x_mainSDB = axlGetMainSetupDB(session)
=> 1001
historyHandle=axlGetHistoryEntry(x_mainSDB "SingleRun.1")
=> 4127
axlSetHistoryName( historyHandle "newHistoryName")
=> t

Return to top
 ⠀
X