public void GetCellDataForButton(long nRowIndex, int nColIndex, out ButtonCellState state, out Bitmap image, out string buttonLabel)
            {
                GridDataRow row = this.mData[(int)nRowIndex];

                state       = ButtonCellState.Normal;
                image       = null;
                buttonLabel = row.ButtonText;
            }
Exemple #2
0
 public void GetCellDataForButton(long nRowIndex, int nColIndex, out ButtonCellState state, out Bitmap image, out string buttonLabel) => throw new NotImplementedException();