RemoveAt

RemoveAt(string)

Tar bort kommentaren från den specifika cellen.

public void RemoveAt(string cellName)
ParameterTypBeskrivning
cellNameStringNamnet på cellen som innehåller en kommentar.

Exempel


[C#]
comments.RemoveAt("B2");

Se även


RemoveAt(int, int)

Tar bort kommentaren från den specifika cellen.

public void RemoveAt(int row, int column)
ParameterTypBeskrivning
rowInt32Radindex.
columnInt32kolumnindex.

Exempel


[C#]
comments.RemoveAt(1,1);

Se även