public NumberBoxBuilder ID(string id)
 {
     InternalID.SetStatic(id);
     return(this);
 }
 public TreeViewBuilder ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }
 public DropDownBoxBuilder ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }
 public RadioGroupBuilder ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }
Exemple #5
0
 public SliderBuilder ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }
 protected virtual void OnRotateHover()
 {
     Debug.WriteLine(string.Format("[{0}] Shape {1}: RotateHover", DateTime.Now.ToString(), InternalID.ToString()));
     if (RotateHover != null)
     {
         RotateHover((object)this, new EventArgs());
     }
 }
 protected virtual void OnActivationChanged()
 {
     Debug.WriteLine(string.Format("[{0}] Shape {1}: ActivationChanged", DateTime.Now.ToString(), InternalID.ToString()));
     if (ActivationChanged != null)
     {
         ActivationChanged((object)this, new EventArgs());
     }
 }
Exemple #8
0
 public HtmlEditorBuilder ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }
 /// <summary>
 /// A string representation of the instance of the <see cref="SeriesBranchBase"/> class.
 /// </summary>
 /// <returns>A string representation of the instance of the <see cref="SeriesBranchBase"/> class.</returns>
 public override string ToString()
 {
     return("-TX- ID: " + InternalID.ToString() + " Number: " + Number.ToString());
 }
 public LoadIndicatorBuilder ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }
Exemple #11
0
 public HtmlEditorBuilder ID(string id)
 {
     InternalID.SetStatic(id);
     return(this);
 }
 public LoadIndicatorBuilder ID(string id)
 {
     InternalID.SetStatic(id);
     return(this);
 }
Exemple #13
0
 public FilterBuilderBuilder <T> ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }
 public NumberBoxBuilder ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }
        public abstract bool Contains(Point p); //Hit test with point

        //Methods for generate events
        protected virtual void OnClick()
        {
            Debug.WriteLine(string.Format("[{0}] Shape {1}: Click", DateTime.Now.ToString(), InternalID.ToString()));
            if (Click != null)
            {
                Click((object)this, new EventArgs());
            }
        }
Exemple #16
0
 public PolarChartBuilder ID(string id)
 {
     InternalID.SetStatic(id);
     return(this);
 }
        protected virtual void OnMoveEnter()
        {
            Debug.WriteLine(string.Format("[{0}] Shape {1}: MoveEnter", DateTime.Now.ToString(), InternalID.ToString()));

            if (MoveEnter != null)
            {
                MoveEnter((object)this, new EventArgs()); //на самом деле MouseEnter
            }
        }
Exemple #18
0
 public PolarChartBuilder ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }
 protected virtual void OnReshapeLeave()
 {
     Debug.WriteLine(string.Format("[{0}] Shape {1}: ReshapeLeave", DateTime.Now.ToString(), InternalID.ToString()));
     if (ReshapeLeave != null)
     {
         ReshapeLeave((object)this, new EventArgs());
     }
 }
Exemple #20
0
 public SparklineBuilder ID(string id)
 {
     InternalID.SetStatic(id);
     return(this);
 }
 public RadioGroupBuilder ID(string id)
 {
     InternalID.SetStatic(id);
     return(this);
 }
Exemple #22
0
 public SparklineBuilder ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }
Exemple #23
0
 public SliderBuilder ID(string id)
 {
     InternalID.SetStatic(id);
     return(this);
 }
 /// <summary>
 /// A string representation of the instance of the <see cref="SynchrophasorAnalytics.Modeling.SeriesCompensator"/> class.
 /// </summary>
 /// <returns>A string representation of the instance of the <see cref="SeriesCompensator"/> class.</returns>
 public override string ToString()
 {
     return("SeriesCompensator," + InternalID.ToString() + "," + Number.ToString() + " Line: " + ParentTransmissionLine.Number.ToString());
 }
Exemple #25
0
 public TreeViewBuilder ID(string id)
 {
     InternalID.SetStatic(id);
     return(this);
 }
Exemple #26
0
 public BarGaugeBuilder ID(string id)
 {
     InternalID.SetStatic(id);
     return(this);
 }
 public DropDownBoxBuilder ID(string id)
 {
     InternalID.SetStatic(id);
     return(this);
 }
Exemple #28
0
 public BarGaugeBuilder ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }
Exemple #29
0
 public GanttBuilder <T> ID(string id)
 {
     InternalID.SetStatic(id);
     return(this);
 }
Exemple #30
0
 public TooltipBuilder ID(JS expr)
 {
     InternalID.SetExpr(expr.Value);
     return(this);
 }