I have a form and I want someone to click a button and have the field value to have a strike through only. I can do it on the caption and the value or just the caption but I cannot find how to do it on just the value. I have tried Textfield1.font.lineThrough = "2"
Thanks
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
I have come across this before. Our workaround was to turn on the strike through and then turn it off specifically for the caption.
Two lines instead of one:
TextField1.font.lineThrough = "2";
TextField1.caption.font.lineThrough = "0";
Hope that helps,
Niall
Views
Replies
Total Likes
Hi,
I have come across this before. Our workaround was to turn on the strike through and then turn it off specifically for the caption.
Two lines instead of one:
TextField1.font.lineThrough = "2";
TextField1.caption.font.lineThrough = "0";
Hope that helps,
Niall
Views
Replies
Total Likes
Thank you. I sort of came to that conclusion as well. I thought maybe I was just missing something. I guess not. Thanks for the quick reply.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies