Compartilhar via


Método RegexCollection.Insert (Int32, Regex)

Insere um elemento para o RegexCollection no índice especificado.

Namespace:  Microsoft.Office.Tools
Assembly:  Microsoft.Office.Tools.Common (em Microsoft.Office.Tools.Common.dll)

Sintaxe

'Declaração
Sub Insert ( _
    index As Integer, _
    value As Regex _
)
void Insert(
    int index,
    Regex value
)

Parâmetros

  • index
    Tipo: System.Int32
    O índice baseado em zero em que value deve ser inserido.

Exceções

Exceção Condição
ArgumentOutOfRangeException

indexé menor que zero.

- ou -

indexé maior do que Count.

NotSupportedException

O RegexCollection é somente leitura.

- ou -

O RegexCollection tem um tamanho fixo.

Comentários

Se Count já é igual a capacidade, a capacidade da lista é dobrada, realocando automaticamente a matriz interna antes do novo elemento é inserido.

If index is equal to Count, value is added to the end of RegexCollection.

Segurança do .NET Framework

Consulte também

Referência

RegexCollection Interface

Sobrecargas Insert

Namespace Microsoft.Office.Tools