Méthode System::Text::StringBuilder::Insert
Contenu
[
Cacher
]StringBuilder::Insert(int, const System::ArrayPtr<char_t>&, int, int) method
Insère des caractères à la position fixe du builder.
StringBuilder * System::Text::StringBuilder::Insert(int index, const System::ArrayPtr<char_t> &chars, int startIndex, int charCount)
| Paramètre | Type | Description |
|---|---|---|
| indice | int | Position où insérer les caractères. |
| chars | const System::ArrayPtr<char_t>& | Array à partir duquel insérer la tranche. |
| startIndex | int | Array indice de début de la tranche. |
| charCount | int | Array longueur de la tranche. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Typedef ArrayPtr
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Insert(int, char_t) method
Insère un caractère à la position fixe du constructeur.
StringBuilder * System::Text::StringBuilder::Insert(int startIndex, char_t ch)
| Paramètre | Type | Description |
|---|---|---|
| startIndex | int | Position où insérer les caractères. |
| ch | char_t | Caractère à insérer. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Insert(int, const String&) method
Insère une chaîne à la position fixe du constructeur.
StringBuilder * System::Text::StringBuilder::Insert(int startIndex, const String &str)
| Paramètre | Type | Description |
|---|---|---|
| startIndex | int | Position où insérer les caractères. |
| str | const String& | String à insérer. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class String
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Insert(int, T) method
Insère une valeur à la position fixe du builder.
template<typename T> std::enable_if<std::is_arithmetic<T>::value, StringBuilder *>::type System::Text::StringBuilder::Insert(int startIndex, T value)
| Paramètre | Description |
|---|---|
| Paramètre | type. |
| Paramètre | Type | Description |
|---|---|---|
| startIndex | int | Position où insérer les caractères. |
| valeur | T | Valeur à formater et insérer. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Insert(int32_t, const String&, int32_t) method
Insère une chaîne répétée à la position fixe du constructeur.
StringBuilder * System::Text::StringBuilder::Insert(int32_t index, const String &value, int32_t count)
| Paramètre | Type | Description |
|---|---|---|
| indice | int32_t | Position où insérer les caractères. |
| value | const String& | String à insérer. |
| count | int32_t | Nombre de fois pour répéter la chaîne value. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class String
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++