dark_mode EN
  • Method WTask :Action
  • Parameters
    cMethod

    cDocument
  • Return value
    Self (Constructor)

Create a task of type 'action'. The most common way to create this task is through the WDoc:Action method. For further information consult the programming guide.

oTask := WTask():Action( "Act_Section1" )
...
WITH OBJECT WLink():New( SO )
  :cText := "First section"
  :cHref := ::Action( "Act_Section1" )  // --> WTask object (equivalent to next line)
  :cHref := oTask
END WITH

Previous chevron_left Next chevron_right