why can't a remove the fill from a polygon?


Author
Message
Hans Henrik Friis Pedersen...
Hans Henrik Friis Pedersen
Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)
Group: Forum Members
Posts: 28, Visits: 136
Hi,
I would like to have no fill in a polygon and the only way I can find is to use this:

NPointF[] points2 = new NPointF[]
{
    new NPointF(150,140),
    new NPointF(200,140),
    new NPointF(200,200),
    new NPointF(150,200),
};
NPolygonPath cup = new NPolygonPath(points2);
cup.Style.FillStyle = new NColorFillStyle(Color.Empty); // an exception is raised - why?


Nevron Support
Nevron Support
Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)Supreme Being (4.5K reputation)
Group: Administrators
Posts: 3.1K, Visits: 4.2K
Hi, the Style property of all diagram elements is by default null. That is why a NullReferenceException is thrown when you try to use a property or method of the Style object. You should always use the static methods of the NStyle class when applying styles to diagram elements in order to avoid such problems. In your case the code should look like this:

NStyle.SetFillStyle(cup, new NColorFillStyle(Color.Empty));


For more information about styles, check out the Styles, Style Composition and Style Sheets documentation topic.

Best Regards,
Nevron Support Team


GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search