Mesh.UnlockAttributeBuffer(Int32[]) Method (Microsoft.DirectX.Direct3D)
Unlocks an attribute buffer.
Definition
Visual Basic Public Sub UnlockAttributeBuffer( _
ByVal dataAttribute() As Integer _
)C# public void UnlockAttributeBuffer(
int[] dataAttribute
);C++ public:
void UnlockAttributeBuffer(
array<int>^ dataAttribute
);JScript public function UnlockAttributeBuffer(
dataAttribute : int[]
);
Parameters
dataAttribute System.Int32[]
Array of pointers that represents the attribute buffer to unlock.
Remarks
Exceptions
The method call is invalid. For example, a method's parameter might contain an invalid value.
The buffer must be locked before it is unlocked.
See Also