Read access to the hyperlink of an object. Read/write access to the hyperlink of the current formula or FlexPro data.
Syntax
Object.hyperlink
or
Data.hyperlink
or
this.hyperlink = URL
or
Data.hyperlink = URL
The syntax of the hyperlink property consists of the following elements:
Element |
Description |
---|---|
DataObject |
The object being accessed. Use this to access the current formula. |
Data |
A flexpro.Data object to which header information of the data object from which it originates is assigned. |
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 permitted for the formula in which the Python code is located.
Available In
FlexPro Professional, Developer Suite
Examples
flexpro.object(r'\formula').hyperlink |
Provides the current attribute setting for the specified formula. |
this.hyperlink = "\Documentation.DOC" |
Assigns the formula a hyperlink to the "Documentation" document in the project database. |