Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Text Underline

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Text Underline

    I use the following to draw text above certain bars

    DrawText("Tag"+CurrentBar,true,"String",0, High[0],0,myColor,textFont,StringAlignment.Center,Color.E mpty,Color.Empty,10);

    When a certain set of conditions are met I want to underline the text-
    textFont has a property called Underline but how do I get it to work please?

    textFont.Underline scans but does not compile.

    #2
    Mindset,

    I believe that property is a read only property. You would likely need to create/change the Font object with the underline setting.
    Josh P.NinjaTrader Customer Service

    Comment


      #3
      Font Object

      Isn't textFontBold a font object?
      sorry for being so dim but how would I change it?

      Comment


        #4
        Code:
        Font f = new Font("Arial",8,FontStyle.Underline );
        replace textFont with f

        google "font C#" for more. that way its much easier.

        Comment


          #5
          Font object

          Isn't that a new instance of an object?- I did look at the msdn site but it uses TextCollections which seemed very complicated for something that is very simple.

          So I need to serialize the new font f object as well?

          edit oops - how do I make text bold and underlined?
          Last edited by Mindset; 03-05-2010, 03:48 AM.

          Comment


            #6
            Mindset, not tested right now, but believe this should do it -

            Code:
             
            Font f = new Font("Arial", 8, FontStyle.Bold & FontStyle.Underline);
            BertrandNinjaTrader Customer Service

            Comment


              #7
              Bold + Underline

              thanks Bertrand that would have taken me an age to figure out!
              I understood | to mean 'or' - logically shouldn't it be '&'?

              mmm - we ought to see that your post has been edited... your revision with the & strangely doesn't work, but | does. Bizarre.
              Last edited by Mindset; 03-05-2010, 04:56 AM. Reason: Question

              Comment

              Latest Posts

              Collapse

              Topics Statistics Last Post
              Started by rhyminkevin, Today, 04:58 PM
              0 responses
              13 views
              0 likes
              Last Post rhyminkevin  
              Started by lightsun47, Today, 03:51 PM
              0 responses
              6 views
              0 likes
              Last Post lightsun47  
              Started by 00nevest, Today, 02:27 PM
              1 response
              14 views
              0 likes
              Last Post 00nevest  
              Started by futtrader, 04-21-2024, 01:50 AM
              4 responses
              48 views
              0 likes
              Last Post futtrader  
              Started by Option Whisperer, Today, 09:55 AM
              1 response
              15 views
              0 likes
              Last Post bltdavid  
              Working...
              X