Sistema Fenix Posted August 19, 2015 Posted August 19, 2015 Hello, Please, does anyone know how to put the screen mask on click of the actioncolumn? Thanks Quote
Pep Posted April 22, 2019 Posted April 22, 2019 "TUniCustomButtonItem" has the ScreenMask property and by code you can use it, but in runtime mode raise exception "invalid class typecast" var Col: TUniBaseDBGridColumn; BtnCol: TUniCustomButtonItem; begin Col := Grid.Columns.Add; Col := Grid.Columns.Add; Col.ActionColumn.Enabled := True; BtnCol := TUniCustomButtonItem(Col.ActionColumn.Buttons.Add); BtnCol.ScreenMask.Enabled := True; // <-- Compiles but in runtime mode raise exception "invalid class typecast" end Anybody knows if Is there another alternative to show ScreenMask on click action column? Thanks in advance! Quote
rhazell Posted January 6, 2022 Posted January 6, 2022 On 8/18/2015 at 10:23 PM, Sistema Fenix said: Hello, Please, does anyone know how to put the screen mask on click of the actioncolumn? Thanks Is this possible? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.