Constructors: NewString |
Initializes a new String to the value indicated by an array of Unicode characters, a starting character position within that array, and a length.
Public Function NewString( ByRef Value ( ) As Integer, Optional ByRef StartIndex As Variant, Optional ByRef Length As Variant ) As String
Exception | Condition |
---|---|
ArgumentNullException | Value is Nothing. |
ArgumentOutOfRangeException |
StartIndex is less than the lower-bound of Value. -or- Length is less than zero. -or- The sum of StartIndex and Length is greater than the upper-bound of Value. |