Example #1
0
 public GraphEvent(GEType type, GEContext context, Node node, IOOutlet outlet)
 {
     Type = type;
     Context = context;
     Node = node;
     Outlet = outlet;
 }
Example #2
0
 public GraphEvent(GEType type, GEContext context, Node node, IOOutlet outlet)
 {
     Type         = type;
     Context      = context;
     Node         = node;
     Outlet       = outlet;
     PositionData = Vector2.zero;
 }
Example #3
0
        public GodEdit(string sSection, GEType ControlType, SystemObject sys)
        {
            Type = ControlType;
            Sys  = sys;
            string fn = Sys.Username;

            Section = sSection;
        }
Example #4
0
        public GodEdit(string sSection, GEType ControlType, string ControlName, string ControlCaptionText, SystemObject sys)
        {
            Type        = ControlType;
            Section     = sSection;
            Name        = ControlName;
            CaptionText = ControlCaptionText;
            if (ControlType == GEType.Button || ControlType == GEType.UploadControl)
            {
                Method = Name + "_Click";
            }

            if (ControlType == GEType.UploadControl)
            {
                Method = Name + "_Click";
            }
            Sys          = sys;
            TextBoxValue = Sys.GetObjectValue(Section, Name);
        }
Example #5
0
 public void Empty()
 {
     Type = GEType.None;
     Context = GEContext.None;
     Node = null;
 }
Example #6
0
 public void Empty()
 {
     Type    = GEType.None;
     Context = GEContext.None;
     Node    = null;
 }