Class ViewManagerHelper
Inheritance
ViewManagerHelper
Assembly: CAMAPI.DotnetHelper.dll
Syntax
public static class ViewManagerHelper
Methods
EnumerateViewPorts(ComWrapper<ICamApiViewManager>)
Enumerate the viewports rendering this manager's scene. Each yielded wrapper
is disposed once enumeration advances, so do NOT wrap the loop variable in a
using; copy out what you need before the next iteration.
Declaration
public static IEnumerable<ComWrapper<ICamApiViewPort>> EnumerateViewPorts(this ComWrapper<ICamApiViewManager> managerCom)
Parameters
Returns
GetViewPort(ComWrapper<ICamApiViewManager>, int)
The viewport at the given index (0 .. ViewPortCount-1).
Declaration
public static ComWrapper<ICamApiViewPort> GetViewPort(this ComWrapper<ICamApiViewManager> managerCom, int index)
Parameters
Returns
GetViewPortCount(ComWrapper<ICamApiViewManager>)
Number of viewports rendering this manager's scene.
Declaration
public static int GetViewPortCount(this ComWrapper<ICamApiViewManager> managerCom)
Parameters
Returns