GetProperty(this cLineElm obj, string Name)
        {
            string PropName;

            PropName = default(string);
            int ObjType;

            ObjType = default(int);
            bool Var;

            Var = default(bool);
            double SVarRelStartLoc, SVarTotalLength;

            SVarRelStartLoc = SVarTotalLength = default(double);
            var res = obj.GetProperty(Name, ref PropName, ref ObjType, ref Var, ref SVarRelStartLoc, ref SVarTotalLength);

            return(PropName, ObjType, Var, SVarRelStartLoc, SVarTotalLength);
        }