public void RemoveParts( int fromPartIndex, int toPartIndex )
Public Sub RemoveParts( _ ByVal fromPartIndex As Integer, _ ByVal toPartIndex As Integer _ )
Parameters
- fromPartIndex
- The index from which the parts are removed. Must be in the range [0, PartCount - 1] inclusive.
- toPartIndex
- The index up to which the parts are removed. Must be in the range [fromPartIndex, PartCount - 1] inclusive. The toPartIndex is excluded from the indices that are removed. For example, if fromPartIndex = 3, toPartIndex = 7, then the parts at indices 3, 4, 5, and 6 will be removed.