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 que o novo elemento é inserido.

Se index é igual a Count, value é adicionado ao final da RegexCollection.

Segurança do .NET Framework

Consulte também

Referência

RegexCollection Interface

Sobrecargas Insert

Namespace Microsoft.Office.Tools