SoBufferObjectFillT Method |
Namespace: OIV.Inventor.DevicesAssembly: OIV.Inventor.Base (in OIV.Inventor.Base.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public void Fill<T>(
T value,
ulong offset,
ulong count
)
where T : struct, new()
Public Sub Fill(Of T As {Structure, New}) (
value As T,
offset As ULong,
count As ULong
)
public:
generic<typename T>
where T : value class, gcnew()
void Fill(
T value,
unsigned long long offset,
unsigned long long count
)
member Fill :
value : 'T *
offset : uint64 *
count : uint64 -> unit when '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