odcRegPin
odcRegPin(
t_deAppName
t_functionText
)
=> t / nil
Description
Allows you to define a custom SKILL function to specify your own information to be displayed in the Info Balloon box for names and net names of pins. The application must be specified and currently only Layout-XL is supported.
Arguments
Value Returned
Examples
To define the SKILL extension:
procedure(customFunc(dbId @optional hierPath)
let((skillStr)
printf("=== input parameter: %L\n" dbId)
; need to return a SKILL string
skillStr = "test custom \n SKILL function\n"
skillStr
); let
)
To register the SKILL extension as a custom SKILL function:
odcRegPin("Layout-XL" "customFunc")
Related Topics
Return to top