MadBoy_cp
a96d146f9c
Added an overload for CreatePicture()
Before change one had to use:
Picture headPicture = header.CreatePicture();
headPicture.Height = 161;
headPicture.Width = 610;
Afer change it's possible to use oneliner:
Picture headPicture = header.CreatePicture(161, 610);
Now both options are available.