Question

This is the property i want to change

This is what i have try:

CartesianGrid cartesianGrid = area.GetGrid<CartesianGrid>();
cartesianGrid.Size = 5;

And this is my error:

Cannot implicitly convert type 'int' to 'System.Drawing.Size'   
Was it helpful?

Solution

As the documentation you linked clearly states, the Size property is expecting an object of type System.Drawing.Size. You are giving it an integer.

Try making a Size object and setting it to that instead. Something like:

cartesianGrid.Size = new Size(5,5);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top