Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Removing last draw object, but not all of them?

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

    Removing last draw object, but not all of them?

    Hi, How would I be able to remove just my last draw object, but not all of them.

    If ( User Defined)
    {
    Draw.Text(this, "PVolD" + CurrentBar.ToString(), false,
    Convert.ToString(PowerPlay(Brushes.Transparent, Brushes.Transparent)[1]), 0,
    High[0]+2*TickSize, 0, Brushes.Black, myFont, TextAlignment.Center,
    Brushes.Transparent, Brushes.Transparent, 2);

    RemoveDrawObject("PVolD"+ (????????));
    }


    Thanks, Woody.

    #2
    Hello Woody,

    Thanks for your post.

    When you write your text, store the current bar number in another int variable (maybe called myLastBar).

    For example:

    DrawText (all your stuff....);
    myLastBar = CurrentBar;


    Then to remove:

    RemoveDrawObject ("PVold"+myLastBar);

    Alternatively, instead of you using CurrentBar to create a unique tag name, create and use an integer counter that is increment each time you draw text to create the unique tag name and this way the integer counter will have the last value used.

    Comment


      #3
      Thanks Paul. That did the trick. Very, Very helpful. Thanks again, Woody!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      164 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      319 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      246 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      350 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      179 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X