Esempio n. 1
0
 public Event(int sourceID, string sourceName, int id, string name)
 {
     ID         = id;
     Name       = name;
     SourceID   = sourceID;
     SourceName = sourceName;
     CodeLines  = new CodeLines(this);
     Parameters = new EventParameters(this);
     Variables  = new EventVariables(this);
 }
Esempio n. 2
0
        public Function(int id, string name)
        {
            ID          = id;
            Name        = name;
            CodeLines   = new CodeLines(this);
            Parameters  = new FunctionParameters(this);
            ReturnValue = new FunctionReturnValue(this);
            Variables   = new FunctionVariables(this);

#if NAV2016
            EventPublisherObject = new ObjectReference();
#endif
        }
Esempio n. 3
0
 internal WordLayout(Report report)
 {
     Report    = report;
     CodeLines = new CodeLines(this);
 }
Esempio n. 4
0
 internal Documentation(Code code)
 {
     Code      = code;
     CodeLines = new CodeLines(this);
 }
Esempio n. 5
0
 internal RdlData(Report report)
 {
     Report    = report;
     CodeLines = new CodeLines(this);
 }
Esempio n. 6
0
 public Trigger()
 {
     CodeLines = new CodeLines(this);
     Variables = new TriggerVariables(this);
 }