getfullname

Get path name of block or line

Syntax

path=getfullname(handle)

Description

path=getfullname(handle) returns the full pathname of the block or line specified by handle.

Examples

getfullname(gcb) returns the pathname of the block currently selected in the model editor's window.

The following code returns the pathname of the line currently selected in the model editor's window.

line = find_system(gcs, 'SearchDepth', 1, 'FindAll', 'on', ...
      'Type', 'line', 'Selected', 'on');
path = getfullname(line);

See Also

|

Introduced in R2007a