文件名称:Symbian开发基础文档
文件大小:547KB
文件格式:PDF
更新时间:2012-10-06 12:48:42
Symbian 开发 基础 搭建
iTextBox = new (ELeave) CEikRichTextEditor(TGulBorder::ENone); Then it is constructed and its flags are set using the command below – in this case they are defined in a way to make the box read only and to hide the cursor. const TInt edwinFlags = EEikEdwinInclusiveSizeFixed| EEikEdwinNoAutoSelection| EEikEdwinDisplayOnly| EEikEdwinReadOnly| EEikEdwinLineCursor| EEikEdwinNoHorizScrolling| EEikEdwinAvkonDisableCursor; iTextBox->ConstructL(this, 4, 0, edwinFlags, EGulFontControlAll, EGulAllFonts); iTextBox->SetAknEditorFlags(edwinFlags); The