Assign(Value: ITabHyperlink);
Value. Hyperlink parameters of which should be set for the current hyperlink.
The Assign method assigns the parameters of the hyperlink, specified as the input Value parameter, to the current hyperlink.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
UiTabSheet1.TabSheet.Cell(1, 1).Style.Hyperlink.Assign(UiTabSheet1.TabSheet.Cell(0, 0).Style.Hyperlink);
End Sub Button1OnClick;
As a result the parameters of the hyperlink in the cell (1,1) will be the same as the parameters of the hyperlink in the cell (0,0).
See also: