版主好,近期使用FarPoint Spread,在行的锁定上出现了点问题,想请教一下,
在初始化窗体时,有几个列是使用了如下代码:
With SS.ActiveSheet
For iCol As Integer = 0 To .Columns.Count - 1
.Columns.Item(iCol).Locked = _bool
.Columns.Item(iCol).TabStop = IIf(_bool, False, True)
.Columns.Item(iCol).BackColor = IIf(_bool, System.Drawing.Color.FromArgb(224, 224, 224), System.Drawing.Color.FromArgb(255, 255, 255))
Next
End With
对指定的列设置为锁定及不锁定,但是我后来在使用整个行的锁定时,对于使用了COLUMN设置为未锁定的时候,这些列则无法被行的Locked进行锁定,想知道为什么?难道使用了COLUMN锁定的列,只能通过COLUMN进行锁定?
谢谢 |
|