Пример #1
0
 public DataRow(TableDocument table)
 {
     InTable = table;
     m_data  = new Dictionary <string, CellData>();
     m_id    = new CTRef(this);
     Exists  = false;
     HasUnresolvedReferences = false;
     m_dupeIndex             = 0;
 }
Пример #2
0
 public DataRow GetRow(Guid rowID)
 {
     return(CTRef.Lookup <DataRow>(rowID));
 }
Пример #3
0
 public int GetLineNumber(Guid rowID)
 {
     return(m_docRows.IndexOf(CTRef.Lookup <DataRow>(rowID)));
 }