
The only option remains is, don't package the DLL and ask my product user to go to download link, and install it themselves. So basically i have no proof from Microsoft that this dll can be redistributed. The post mentions '' link, this link is not opening. Unless i show a substantial proof from Microsoft, my organization will not allow me to redistribute this DLL/package to customer. This particular thing is not written anywhere. I want a substantial post from Microsoft that says the download package it self can be packaged as part of my product, OR the DLL can be shipped directly (as a re-distributable). As mentioned before, I don't need the DLL or the download package, but a proof, whether the DLL can be redistributed. Public Sub DrawRectangleRectangle(ByVal e As PaintEventArgs)ĭim rect As New Rectangle(0, 0, 200, 200)Really Appreciate the help you are providing. Rectangle rect = new Rectangle(0, 0, 200, 200) Į.Graphics.DrawRectangle(blackPen, rect) Public void DrawRectangleRectangle(PaintEventArgs e) Void DrawRectangleRectangle( PaintEventArgs^ e )Į->Graphics->DrawRectangle( blackPen, rect )

Public Sub DrawRectangleInt(ByVal e As PaintEventArgs) Public void DrawRectangleInt(PaintEventArgs e) Void DrawRectangleInt( PaintEventArgs^ e ) Public Sub DrawRectangleFloat(ByVal e As PaintEventArgs)Į.Graphics.DrawRectangle(blackPen, x, y, width, height)įor information about how to draw a RectangleF, see DrawRectangles(Pen, RectangleF).

Public void DrawRectangleFloat(PaintEventArgs e)Į.Graphics.DrawRectangle(blackPen, x, y, width, height)

Create location and size of rectangle.Į->Graphics->DrawRectangle( blackPen, x, y, width, height ) Pen^ blackPen = gcnew Pen( Color::Black,3.0f ) Void DrawRectangleFloat( PaintEventArgs^ e ) The code performs the following actions:Ĭreates the position and size of a rectangle. The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler.
