Subversion Repositories DevTools

Rev

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

Rev 2124 Rev 2126
Line 163... Line 163...
163
      /// </summary>
163
      /// </summary>
164
      /// <param name="theElement"></param>
164
      /// <param name="theElement"></param>
165
      /// <param name="recurse_level"></param>
165
      /// <param name="recurse_level"></param>
166
      public static void processTableElement(EA.Element theElement, int recurse_level )
166
      public static void processTableElement(EA.Element theElement, int recurse_level )
167
      {
167
      {
-
 
168
         processTableElement(theElement.Notes, recurse_level, 0);
-
 
169
      }
-
 
170
 
-
 
171
      public static void processTableElement(string tableDef, int recurse_level, float indent_pts )
-
 
172
      {
168
         string [] EA_DocGenTable = null;
173
         string [] EA_DocGenTable = null;
169
         string [] cells = null;
174
         string [] cells = null;
170
 
175
 
171
         string delimStr = "\r\n";
176
         string delimStr = "\r\n";
172
         char [] delim = delimStr.ToCharArray();
177
         char [] delim = delimStr.ToCharArray();
173
 
178
 
174
         string trimStr = " ";
179
         string trimStr = " ";
175
         char [] trimChars = trimStr.ToCharArray();
180
         char [] trimChars = trimStr.ToCharArray();
176
 
181
 
177
         EA_DocGenTable = theElement.Notes.ToString().Split(delim,200);
182
         EA_DocGenTable = tableDef.Split(delim,200);
178
 
183
 
179
         int columnCount = 0;
184
         int columnCount = 0;
180
         int rowCount = 0;
185
         int rowCount = 0;
181
         char seperator = ',';
186
         char seperator = ',';
182
         string tableTitle = "";
187
         string tableTitle = "";