WP Bookmark range was named WP Get bookmark range in previous versions of 4D Write Pro. It has been renamed for clarity.
The WP Bookmark range command returns a text range object (rangeObj) containing the range for the bookmark with the specified bkName in wpDoc.
If the bkName bookmark does not exist in wpDoc, an empty rangeObj object is returned.
You want to show the range of the "MyBookmark" bookmark in your document:
C_OBJECT($wpRange)
$wpRange:=WP Bookmark range(WParea;"MyBookmark")
WP SELECT(WParea;$wpRange)