Message 1 of 2
Get/Set Split Section in ViewSection with API
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
Is it possible to Get and Set the ViewSection split shape with the API?
Split ViewSection
ViewSection section = view as ViewSection;
ViewCropRegionShapeManager cropMgr = section.GetCropRegionShapeManager();
IList<CurveLoop> loopList = cropMgr.GetCropShape();
The single CurveLoop in the list has just 4 lines, which seems to be just the main frame of the section
bool split = section.IsSplitSection(); // returns false but I was expecting true
int nb = cropMgr.NumberOfSplitRegions; // return 1, was expecting at least 2
I haven't seen anything in the ElevationMarker class either.
Any help would be much appreciated...