Click or drag to resize
SoBufferObjectFillT Method
Convenient method to fill an SoBufferObject with a default value.

Namespace: OIV.Inventor.Devices
Assembly: OIV.Inventor.Base (in OIV.Inventor.Base.dll) Version: 2024.1.0.0 (2024.1.0)
Syntax
public void Fill<T>(
	T value,
	ulong offset,
	ulong count
)
where T : struct, new()

Parameters

value
Type: T
Value to fill the buffer with.
offset
Type: SystemUInt64
Offset within the buffer (where to start setting values). Not in byte size.
count
Type: SystemUInt64
The number of values to set. Not in byte size.

Type Parameters

T
A non-nullable value type.
Remarks
This method calls the [M:OIV.Inventor.Devices.SoBufferObject.Memset(System.IntPtr,System::UInt64,System::UInt64,System::UInt64)] basic method.
See Also