Posted 30 April 2019, 8:18 am EST
Hello,
Can you point me to the on-line documentation for (Winforms) syntax?
Looking for how to set the Border around an image.
Thank you,
Chuck
Forums Home / ComponentOne / WinForms Edition
Posted by: cvandien on 30 April 2019, 8:18 am EST
Posted 30 April 2019, 8:18 am EST
Hello,
Can you point me to the on-line documentation for (Winforms) syntax?
Looking for how to set the Border around an image.
Thank you,
Chuck
Posted 1 May 2019, 1:39 am EST
Hi Chuck,
There is no direct documentation link defining how to add borders for an ImageField at run-time. However, you can do the same as follows:
img.Border.Style = C1.Win.C1Document.DashStyle.Solid
img.Border.Color = Color.Red
img.Border.Width = 40
where img is an ImageField instance.
Documentation link defining how borders are set in FlexReportDesigner:
http://help.grapecity.com/componentone/NetHelp/FlexReport/webframe.html#Borders.html
Thanks,
Esha
Posted 1 May 2019, 5:13 pm EST
Thank you!