ArrayObject.SpliceSlowly Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Ajoute et supprime des éléments dans un tableau à la position spécifiée du tableau. Vous pouvez ajouter et/ou supprimer des éléments.
Cette API prend en charge l'infrastructure du produit et n'est pas destinée à être utilisée directement à partir de votre code.
protected:
void SpliceSlowly(System::UInt32 start, System::UInt32 deleteCount, cli::array <System::Object ^> ^ args, Microsoft::JScript::ArrayObject ^ outArray, System::UInt32 oldLength, System::UInt32 newLength);
protected void SpliceSlowly (uint start, uint deleteCount, object[] args, Microsoft.JScript.ArrayObject outArray, uint oldLength, uint newLength);
member this.SpliceSlowly : uint32 * uint32 * obj[] * Microsoft.JScript.ArrayObject * uint32 * uint32 -> unit
Protected Sub SpliceSlowly (start As UInteger, deleteCount As UInteger, args As Object(), outArray As ArrayObject, oldLength As UInteger, newLength As UInteger)
Paramètres
- start
- UInt32
Position dans ce tableau à laquelle il faut ajouter et supprimer des éléments.
- deleteCount
- UInt32
Nombre d'éléments à supprimer, le cas échéant.
- args
- Object[]
Éléments à ajouter, le cas échéant.
- outArray
- ArrayObject
Tableau qui contient les éléments supprimés de ce tableau, le cas échéant.
- oldLength
- UInt32
Longueur précédente de ce tableau.
- newLength
- UInt32
Nouvelle longueur de ce tableau.