|
■No101734 (伝説のカレー さん) に返信 > ■No101733 (tomo2222 さん) に返信 > >>FarPoint.Web.Spread.ButtonCellType button = (FarPoint.Web.Spread.ButtonCellType)sender; >>の部分ですが、 >>VBではどの様に記述すればよいでしょうか。 > > Dim button = DirectCast(sender, FarPoint.Web.Spread.ButtonCellType) > > キャストしてるだけなのでこんな感じでできるはずです
教えて頂きありがとうございます。 Dim button = DirectCast(sender, FarPoint.Web.Spread.ButtonCellType) で取得した「button」のプロパティにRow、Columnがないのですが、 どこか間違っていますでしょうか。
Protected Sub grid1_ClickCellButton(ByVal sender As Object, ByVal e As System.EventArgs) Handles grid1.ButtonCommand
Dim aaa As Integer Dim bbb As Integer
Dim button = DirectCast(sender, FarPoint.Web.Spread.ButtonCellType)
aaa = button.row.index bbb = button.Column.index
button.row rowは'ButtonCellType'のメンバーではありません。 button.Column Columnは'ButtonCellType'のメンバーではありません。
以上、よろしくお願いします。
|