Hi, I have a dialog with a rich text editor defined as a resource in my rss file. How do I define the resource to specify what to text to show in the Rich Text editor dialog.
Another question I have is if it is possible to set the font size in the resource definition? if yes, how?
The way the resource is currently defined is the following:
RESOURCE DIALOG r_enroll2_dialog
{
title="Enroll 2";
flags=EEikDialogFlagNoDrag | EEikDialogFlagFillAppClientRect |EEikDialogFlagWait;
buttons=R_AVKON_SOFTKEYS_OK_CANCEL;
items=
{
DLG_LINE
{
type=EEikCtRichTextEditor;
id=ELineStatic1;
control=RTXTED
{
width=176;
height=130;
numlines=0;
};
itemflags = EEikEdwinAlwaysShowSelection | EEikRTedNoTextParsers | EEikDlgItemNonFocusing;
tooltip = "RichText";
}
};
}




