Remove() public méthode

Remove from the collection the specified cell
public Remove ( Position pCell ) : bool
pCell Position
Résultat bool
Exemple #1
0
        /// <summary>
        /// Remove all the cells excluse the specified range
        /// </summary>
        /// <param name="pRangeToLeave"></param>
        public void Clear(Range pRangeToLeave)
        {
            RangeRegion region = new RangeRegion(this);

            region.Remove(pRangeToLeave);
            Remove(region);
        }
Exemple #2
0
 /// <summary>
 /// Remove all the cells excluse the specified range
 /// </summary>
 /// <param name="pRangeToLeave"></param>
 public void Clear(Range pRangeToLeave)
 {
     RangeRegion region = new RangeRegion(this);
     region.Remove(pRangeToLeave);
     Remove(region);
 }