|
|
|
|
|
Procedimiento WLanguage llamado por AddLink Procedimiento ("Callback") llamado por AddLink. // == Global declarations of the window == arrLinkTarget is array of strings
// == Click on the Button control "Add a note" == LinkRank is int Destination is string // Asks for a note to associate with the link IF Input("Enter a note associated with this link: ", Destination) = 1 THEN // Stores the note in an array LinkRank = Add(arrLinkTarget, Destination) // Adds the link into the edit control AddLink(EDT_Edit, EDT_Edit.Cursor, ... EDT_Edit.CursorEnd, ClickOnLink, LinkRank) END
PROCEDURE ClickOnLink(LinkRank is int)
InfoBuild("The rating associated with link %1 is: %2", LinkRank, ...
arrLinkTarget[LinkRank])
Sintaxis
AddLink:Callback(<Procedure parameter>)
<Procedure parameter>: Variant Parámetro que se pasa al procedimiento cuando se hace clic en el enlace. Este parámetro se ha especificado en la sintaxis de llamada de AddLink.
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|