DictTable.searchLinkRefType Method

Retrieves the type of the menu item that links to information on a website about a table record that is listed in the Enterprise Portal search results.

Syntax

public WebMenuItemType searchLinkRefType()

Run On

Called

Return Value

Type: WebMenuItemType Enumeration
A WebMenuItemType system enumeration value that specifies the menu item type.

Remarks

Use table properties to set the SearchLinkRefType property for a table. To access the table properties in the AOT, right-click the table, and then click Properties.

Examples

The following example shows a call to the searchLinkRefType method.

static public void Main(Args _args) 
{ 
    DictTable dt; 
    WebMenuItemType webMenuItemType; 
 
    dt = new DictTable(tablenum(CustTable)); 
    webMenuItemType = dt.searchLinkRefType(); 
}

See Also

Reference

DictTable Class