MATLABfromCSharp.LogInput.LogInput C# (CSharp) Method

LogInput() public method

Constructor of a Log Input
public LogInput ( string key, string element, string attribute, string path, AFTimeRange timeRange ) : System
key string unique variable name
element string element name
attribute string attribute name
path string element path
timeRange AFTimeRange AFTimeRange
return System
        public LogInput(string key, string element, string attribute, string path, AFTimeRange timeRange)
        {
            keyVariableName = key;
            this.element = element;
            this.attribute = attribute;
            elementPath = path;
            Range = timeRange;
            timespaceFormat = "ts";
        }

Same methods

LogInput::LogInput ( string varname, string elem, string attr, string path ) : void
LogInput::LogInput ( string varname, string elem, string attr, string path, System.TimeSpan time ) : void