odcRegRuler
odcRegRow(
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 rulers. The application must be specified and currently only Layout-XL is supported.
Arguments
Value Returned
Example
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:
odcRegRuler("Layout-XL" "customFunc")
Related Topics
Return to top