Skip to main content

Link

Custom links to add to the app

Attributes

AttributeTypeDescription
pathstrThe destination URL or file system path that the link points to.
titlestrThe display text or label shown to the user for this link.
is_relativebool = FalseIndicates whether the path should be interpreted as relative to the application root or as an absolute URL.

Constructor

Signature

def Link(
path: str,
title: str,
is_relative: bool = False
) - > null

Parameters

NameTypeDescription
pathstrThe URL or file path for the link.
titlestrThe display title for the link.
is_relativebool = FalseWhether the path is relative to the application root.

Signature

def Link(
path: string,
title: string,
is_relative: boolean = False
) - > null

Parameters

NameTypeDescription
pathstringThe URL or file system path the link points to.
titlestringThe display text shown to the user for this link.
is_relativeboolean = FalseIndicates whether the path should be treated as relative to the application root or as an absolute URL.