G Guest Nov 4, 2003 #1 How can i get a dashed brush in GDI+? I only see SolidBrush and SystemBrush and TextureBrush. Is this yet another gaping hole?
How can i get a dashed brush in GDI+? I only see SolidBrush and SystemBrush and TextureBrush. Is this yet another gaping hole?
W William Ryan Nov 5, 2003 #2 Yes, you can.... http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbconpensbrushes.asp The framework is still young, but it allows you to do most of what want....
Yes, you can.... http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbconpensbrushes.asp The framework is still young, but it allows you to do most of what want....
R rs_tiin Nov 5, 2003 #3 Hi Check this out System.Drawing.Drawing2D.HatchBrush hb = new System.Drawing.Drawing2D.HatchBrush (System.Drawing.Drawing2D.HatchStyle.DashedVertical, System.Drawing.Color.Black, System.Drawing.Color.White); System.Drawing.Pen pn = new System.Drawing.Pen(hb, 3); You can use the HatchStyle enumeration to specify the type u want. if u want it, MS has it!!!!!!!!!! regards, sr
Hi Check this out System.Drawing.Drawing2D.HatchBrush hb = new System.Drawing.Drawing2D.HatchBrush (System.Drawing.Drawing2D.HatchStyle.DashedVertical, System.Drawing.Color.Black, System.Drawing.Color.White); System.Drawing.Pen pn = new System.Drawing.Pen(hb, 3); You can use the HatchStyle enumeration to specify the type u want. if u want it, MS has it!!!!!!!!!! regards, sr