CHMlib Logo Leading Translation Management System for Translation Agencies, Top Translation Management Software for Freelance Translators, Time Tracking Software, Word Count, Character Count and Line Count Software, Computer Assisted Translation Tool for Easy Word Count, Clipboard Character Count Software, User-Friendly Translation Memory Software, Terminology Management Software, Terminology Management Server, Microsoft Glossary Software, Dictionary of Acronyms, Social Network for Translators and Translation Agencies, Acronyms and Abbreviations Search Engine, Russian Translation Lab, Ukrainian Translation Lab.
You are reading help file online using chmlib.com
CrisisHelper - First Aid in Tough Times of World Economic Crisis


_bm0 Rave Reports Visual Designer

Dynamically Changing Fonts

Top  Previous  Next

QUESTION

How can I dynamically change a Font color, name, size or style?

 

SOLUTION

Some report designs can have one or more fields that would be enhanced if the you could control the font attributes of those fields to emphasis them when a certain condition occurred. There are a couple of ways to do this in Rave Reports.

 

1) One choice would be to "mirror" different sections. Each section would probably look very similar and would contain Text or DataText components with the font attributes you want. These sections to be mirrored should be on a Global Page. One section could contain all your components with font attributes set as "Arial" "10 points" "Normal" "Black". Another section would also contain the same components with the font attributes set as "Arial" "10 points" "Bold" "Red".

 

2) Another choice is to use the FontMaster component and a Rave event . to control which FontMaster is used. First, drop several FontMaster components on a Global Page. Set one FontMaster name to "FontArial10NormalBlack" with the font attributes set as "Arial" "10 points" "Normal" "Black". Then set the other FontMaster name to "FontArial10BoldRed" with the font attributes set as "Arial" "10 points" "Bold" "Red". The following is an example of an event that will change the FontMirror property of a DataText component to point to the FontMaster you want based upon the contents of a DataField. This could be used in an OnBeforePrint or OnGetText event of your Text or DataText component(s).

 

{ Event for DataTextFishName.OnGetText }

function DataTextFishName_OnGetText(Self: TRaveDataText; var Value: string);

begin

  if UpperCase(BioLifeDVCategory.AsString) = 'SHARK' then

     Self.FontMirror := FontArial10BoldRed;

  else

     Self.FontMirror := FontArial10NormalBlack;

  end if;

end OnGetText;

 



You are reading help file online using chmlib.com

If you want your help file to be removed or added please send e-mail to chmlibcom@gmail.com