Is there a way you can have bulleted tekst in fast reports 4.13 ? I have a memo field which I would like to display bulleted. If not in fast reports are there any other delphi components that can do that ?
相关问题
- Is there a Delphi 5 component that can handle .png
- Is there a way to install Delphi 2010 on Windows 2
- Is TWebBrowser dependant on IE version?
- iOS objective-c object: When to use release and wh
- DBGrid - How to set an individual background color
相关文章
- Best way to implement MVVM bindings (View <-> V
- Windows EventLog: How fast are operations with it?
- How to force Delphi compiler to display all hints
- Coloring cell background on firemonkey stringgrid
- HelpInsight documentation in Delphi 2007
- Can RTTI interrogate types from project code at de
- What specifically causes EPrivilege to be raised?
- Equivalent to designer guidelines in code
The
RichText
object (TfrxRichView
) supports bulleted text.The question which may naturally raise up, is how to make that bulleted list from code. Well, that's quite easy. You just set the
Numbering
property of the currentParagraph
for the innerRichEdit
of theTfrxRichView
object tonsBullet
. Assuming you have aRichText
object namedRich1
placed on a reportfrxReport1
, you can use a code like this to make three bulleted items: