Home

custom highlightening combined with horizontal run

edited September 2022

if i want to highlight only 1 object attribute, how do i use it in combination with Horizontal run?
void Main()
{
extendedchild a = new extendedchild();
a.parent3 = DateTime.Now;

    Util.HorizontalRun(true, a).Dump();

}

///

/// This file holds all user defined indicator methods. ///

public class parent
{

public double parent1 { get; set; }

public bool child1 { get; set; }

public double parent2 { get; set; } 

public DateTime parent3 { get; set; } // need to highlight parent3 in yellow

}

i want to only highlight this in yellow

Comments

Sign In or Register to comment.