Exemplo n.º 1
0
 public AtlasCell GetAtlasCell(int atlasColumn, int atlasRow, bool autoCreate = false)
 {
     var result = GetAtlasColumn(atlasColumn) == null ? null : this[atlasColumn][atlasRow];
     if (result == null && autoCreate)
     {
         result = new AtlasCell();
         SetAtlasCell(atlasColumn, atlasRow, result);
     }
     return result;
 }
Exemplo n.º 2
0
 public void SetAtlasCell(int atlasColumn, int atlasRow, AtlasCell value)
 {
     if (GetAtlasColumn(atlasColumn) == null)
     {
         SetAtlasColumn(atlasColumn, new AtlasColumn());
     }
     this[atlasColumn][atlasRow] = value;
 }
Exemplo n.º 3
0
 public void SetAtlasCell(int atlasRow, AtlasCell value)
 {
     this[atlasRow] = value;
 }