本帖最后由 Richard.Ma 于 2019-11-11 09:56 编辑
你好,能否提供一下
Me(Me.ActivePosition.MRow, Me.ActivePosition.Column, Me.ActivePosition.Row).Value
前后文相对比较完整的代码,我帮你判断一下,
如果是想要迁移到MultiRow的话,
这个是MR里面相关的属性和事件,基本是active cell相关的用法找这些就够了
- var currentCell = gcMultiRow.CurrentCell;
- var currentRowIndex = currentCell.RowIndex;
- var currentColumnIndex = currentCell.CellIndex;
-
- var currentRow = gcMultiRow.CurrentRow;
- var currentRowPosition = gcMultiRow.CurrentCellPosition;
-
- gcMultiRow.CurrentCellChanged += (s, e) =>
- {
-
- };
复制代码
|