Read access to the hyperlink of an object. Read/write access to the hyperlink of the current formula.
Syntax
[Object].Hyperlink
or
[this].Hyperlink= URL
The syntax of the Hyperlink property consists of the following elements:
Element |
Description |
---|---|
Object |
Optional. The object being accessed. If you omit this element, then the current formula is accessed. In the case of embedded FPScript you have to use the This keyword. |
URL |
A string with the URL of the file that is to be opened when the hyperlink is clicked. A hyperlink can be created which •opens an HTML page in the browser, •opens a local file on your computer or in the network, •sends an e-mail to the addressee specified in the hyperlink, •or opens an object in the FlexPro project database. |
Remarks
Write access to the header information of a data object is only allowed for the formula where the FPScript code is located.
Available In
FlexPro Basic, Professional, Developer Suite
Examples
\Formula.Hyperlink |
Provides the current attribute setting for the specified formula. |
.Hyperlink = "\Documentation.DOC" |
Assigns the formula a hyperlink to the "Documentation" document in the project database. |