User's Guide > The Basics of Web.Link > Notes > Note URLs
Note URLs
 
Functions Introduced:
The pfcScript.pwlNoteURLSet() provides the Uniform Resource Locator (URL) of the specified note, given its identifier. The syntax is as follows:
pwlNoteURLGet (
string MdlNameExt, // The full name of the model.
integer NoteID // The note identifier. Use
// parseInt with this argument.
);
Additional return field:
string NoteURL; // The URL of the note.
To set the URL, call the function pfcScript.pwlNoteURLSet(). The syntax is as follows:
pwlNoteURLSet (
string MdlNameExt, // The full name of the model.
integer NoteID, // The note identifier. Use
// parseInt with this argument.
string NoteURL // The URL of the note.
);
* 
These functions do not apply to drawings.
Was this helpful?