cancel
Showing results for 
Search instead for 
Did you mean: 

Disable Column in Matrix

0 Kudos

hey we have an inactive column in our matrix which we want to fill with a customize rule. Is there any way with c# to activate this column and deactivate it afterwards?

Accepted Solutions (1)

Accepted Solutions (1)

former_member390407
Contributor
0 Kudos

Hi Bastian,

If it's a UDF I would suggest to use SetCellWithoutValidation method of a matrix object. As far as I know it's the fastest way and it skips checks on field availability.

((Matrix)form.Items.Item(matrixId).Specific).SetCellWithoutValidation(rowNumber, udfName, value);

Answers (1)

Answers (1)

0 Kudos

thanks it worked