Subversion Repositories DevTools

Rev

Rev 2124 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2124 Rev 2132
Line 110... Line 110...
110
 
110
 
111
         // Extract the control options from the notes of the element
111
         // Extract the control options from the notes of the element
112
         
112
         
113
         string delimStr = "\n";
113
         string delimStr = "\n";
114
         char [] delim = delimStr.ToCharArray();
114
         char [] delim = delimStr.ToCharArray();
115
         options_string = theElement.Notes.ToString().Split(delim,100);
115
         options_string = theElement.Notes.Split(delim,100);
116
         int i = 0;
116
         int i = 0;
117
         foreach(string s in options_string)
117
         foreach(string s in options_string)
118
         {
118
         {
119
            options_string[i] = s.Trim();
119
            options_string[i] = s.Trim();
120
            i++;
120
            i++;