Hi
I am dynamically creating a chart (see
this link) and I need to set the background color of the gif to match the module container's background, What code do I need to access this coloR?
That is in the code...
'Building a BitMap that will act as the pallet and
container
Dim objBitMap As New
Bitmap(400, 200)
'Declaring a Graphics objects for painting
graphics on this newly created bitmap.
Dim objGraphics As Graphics
objGraphics = Graphics.FromImage(objBitMap)
'Setting the background color to
silver
objGraphics.Clear(Color.Silver)
... how can I set the background color to the module container's background?
All suggestions much appreciated
Thanks
Geoffrey
PS I would like to do the same thing in SVG but I will make that a separate thread.