Click or drag to resize
SoBufferObjectAccessModes Enumeration

This enum provides the possible access modes for a mapped buffer object.

Namespace: OIV.Inventor.Devices
Assembly: OIV.Inventor.Base (in OIV.Inventor.Base.dll) Version: 2024.1.0.0 (2024.1.0)
Syntax
public enum AccessModes
Members
  Member nameValueDescription
READ_ONLY0

The target buffer initially has the same contents as the source buffer.

SET1

The target buffer contents are initially undefined (although they may be the same as the source buffer) but the source buffer will contain the contents of the target buffer after the unmap.

READ_WRITE2

The target buffer initially has the same contents as the source buffer and the source buffer will contain the contents of the target buffer after the unmap.

Remarks