|
-
Sep 19th, 2012, 07:52 AM
#9
New Member
Re: Shape Editor, including many shapes, Resize and more
How to add text on a shape ????
I've added this property to base class shape _
private string _Texto = String.Empty;
public string Texto
{
get { return _Texto; }
set
{
if (value.Trim() == String.Empty)
throw new ArgumentException("Texto cannot be empty.");
_Texto = value;
}
}
But i need to extend to (for example Rectangle )...how ??
Thanks for your great work !!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|