cancel
Showing results for 
Search instead for 
Did you mean: 

SAPbouiCOM.Matrix row ReadOnly

Former Member
0 Kudos

I'm trying to make a row of the SAPbouiCOM.Matrix readonly but until now i have succeeded only with the columns:

Dim oMtx As SAPbouiCOM.Matrix

oMtx.Columns.Item("col_0").Editable = False

how can I do?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Gianluca,

Currently there is no method available that locks a SAPbouiCOM.Matrix row.

If you need to block the access to a matrix row, you need to handle the matrix's click event, check if the user is clicking the row you want to block, and if so, you set the BubbleEvent to false. This way the user cannot get focus to a cell in that row.

Regards,

Vítor Vieira

Former Member
0 Kudos

Thanks, but I knew it already.

Is there a way to highlight the row, or better, color the line in order to make it seem readonly?

Answers (0)