Function EN Version 2.10

@RTAddPopUpStart

RichText Text

Syntax

@RTAddPopUpStart(TEXT1;FLAGS2;RT3);
@RTAddPopUpStart(CNFORMULA1;FLAGS2;RT3);

Description

Appends TEXT TEXT1 or CNFORMULA CNFORMULA1 as a pop-up with the pop-up flags FN FLAGS2 to the end of the RichText value RT RT3.
This should be regarded as a logical opening bracket.
Everything appended to the RichText field after this point is placed under the pop-up.
To close this logical bracket, @RTAddPopUpEnd is used.
Text and graphics may be placed under a pop-up.

FLAGS2:
0. none (currently same as 5)
5. normal
8. border is invisible

Example: @RTAddPopUpStart(TEXT1;FLAGS2;RT3)

dbh1:=@OpenDB("TEST.NSF");
noteh1:=@CreateNote(dbh1;noteh1);
Form[noteh1]:="Test1";
style1:=0:1:10:0:4;

RT[noteh1]:=@RTInit;
RT[noteh1]:=@RTAddPopUpStart("PopUp Text zu einem sichtbarem PopUp";0;RT[noteh1]);
RT[noteh1]:=@RTAddText("Text unter PopUp";style1;RT[noteh1]);
RT[noteh1]:=@RTAddPopUpEnd(RT[noteh1]);

noteh1:=@CloseNote(noteh1;1);
dbh1:=@CloseDB(dbh1);

A visible pop-up with the text "PopUp Text zu einem sichtbarem PopUp" is added to the RichText field RT over the text "Text unter PopUp".

Note : This text was machine-translated and may contain inaccuracies.