Event arguments for layout-renamed events.

interface AcDbLayoutRenamedEventArgs {
    layout: AcDbLayout;
    newName: string;
    oldName: string;
}

Properties

layout: AcDbLayout

The layout involved in the event

newName: string

The new name of the layout

oldName: string

The old name of the layout