You can try handling the DrawCurrentCellBorder event and cancel it if the cell is your button.
private void gridControl1_DrawCurrentCellBorder(object sender, GridDrawCurrentCellBorderEventArgs e)
{
if(gridControl1[e.RowIndex, e.ColIndex].CellType == "EllipsisText")
e.Cancel = true;
}