dbGetPinFigName
dbGetPinFigName(d_figId) =>t_pinFigName/nil
Description
Returns the name of the figure specified by the pin figure ID.
If the name of the figure is equivalent to name of the pin associated with figure, then a value is not stored on the figure and the returned value is retrieved from the pin.
Arguments
Value Returned
|
The SKILL function was not run successfully if the pin ID or figure IDs are invalid. |
Example
foreach( fig setof(shape geGetEditCellView()~>shapes shape~>pin != nil)
printf("Pin fig name: %s\n" dbGetPinFigName(fig)
)
)
Return to top