Exemplo n.º 1
0
 public void AddToggle(TextElement toggle, Rdl.Engine.Enums.ToggleDirectionEnum direction)
 {
     if (_toggleList == null)
     {
         _toggleList = new List <Toggle>();
     }
     _toggleList.Add(new Toggle(toggle, direction));
 }
Exemplo n.º 2
0
 public Toggle(TextElement te, Rdl.Engine.Enums.ToggleDirectionEnum direction)
 {
     Element   = te;
     Direction = direction;
 }