09-11-2017 10:01 AM
Is there an equivalence of the shape type in vb6 named cwShapeMinMaxRegion ?
Solved! Go to Solution.
09-11-2017 10:32 AM
Are you using WPF or Windows Forms in your .NET application?
What kind of appearance/behavior are you looking to achieve? It would be very helpful if you could provide a screenshot of the VB6 effect you are looking for.
09-11-2017 10:48 AM - edited 09-11-2017 10:55 AM
Actually, I think the vb6 property that makes the trick is the cwRegionInverted. This is what I am trying to achieve
I am using XYRangeAnnotation setting up values for YRange (-5,5) and XRange(Negativeinfinity, PositiveInfinity) but I cant invert the annotation like vb6 property did.
I am using Winforms
I dont know if the only way to achieve that it is using two annotations one from the top and one for the bottom
09-11-2017 11:04 AM
I do not believe the XYRangeAnnotation class offers an equivalent of cwRegionInverted. To achieve the same effect, you would need to use two range annotations: one from -Infinity to -5, and one from 5 to +Infinity.
09-11-2017 11:14 AM
Yes, that the best solution we can find
Thanks