Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

IDrawingTool

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

    IDrawingTool

    Hi, I' have an indicator that will scan my chart looking for user drawn rectangles. I'm using IDrawingTool for "Rectangle" and have identified my anchors (Anchors.First() && Anchors.Last()). I just need to identify the rectangle's interior color and border color attributes. Is there documentation for this? Thanks

    #2
    Hello pman777,

    Thanks for the post.

    This is not really documented but can be accomplished fairly easily. This is dependent on the tool, there is not a general property for these colors. The Rectangle has specific properties that are only for Rectangle so you will need a cast.


    Code:
    DrawingTool r = Draw.Rectangle(this, "test", true, 0, Close[0], 0, Close[1], Brushes.Red, Brushes.Black, 100);
    
    if (r is Rectangle)
    {
          Rectangle rect = (Rectangle)r;
          Brush area = rect.AreaBrush;
          Brush outline = rect.OutlineStroke.Pen.Brush;
    }

    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    221 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    136 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    150 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    236 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    193 views
    0 likes
    Last Post CarlTrading  
    Working...
    X