HolographicFrame.AddedCameras Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the list of HolographicCamera objects that were added since last frame.
public:
property IVectorView<HolographicCamera ^> ^ AddedCameras { IVectorView<HolographicCamera ^> ^ get(); };
IVectorView<HolographicCamera> AddedCameras();
public IReadOnlyList<HolographicCamera> AddedCameras { get; }
var iVectorView = holographicFrame.addedCameras;
Public ReadOnly Property AddedCameras As IReadOnlyList(Of HolographicCamera)
Property Value
A collection of HolographicCamera objects that were added.
Remarks
Cameras only show up in this list after they surface in the CameraAdded event to //! let apps initialize any per-camera buffers on a background thread.