Méthode System::Text::StringBuilder::Append
StringBuilder::Append(char_t) method
Ajoute un caractère au constructeur.
StringBuilder * System::Text::StringBuilder::Append(char_t c)
| Paramètre | Type | Description |
|---|---|---|
| c | char_t | Valeur du caractère. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(char_t, int) method
Ajoute des caractères au constructeur.
StringBuilder * System::Text::StringBuilder::Append(char_t c, int count)
| Paramètre | Type | Description |
|---|---|---|
| c | char_t | Valeur du caractère. |
| count | int | Combien de fois répéter le caractère inséré. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(const ArrayPtr<char_t>&) method
Ajoute un tableau de caractères au constructeur.
StringBuilder * System::Text::StringBuilder::Append(const ArrayPtr<char_t> &arr)
| Paramètre | Type | Description |
|---|---|---|
| arr | const ArrayPtr<char_t>& | Caractères à ajouter. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Typedef ArrayPtr
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(const ArrayPtr<char_t>&, int, int) method
Ajoute une tranche de tableau de caractères au constructeur.
StringBuilder * System::Text::StringBuilder::Append(const ArrayPtr<char_t> &arr, int startIndex, int charCount)
| Paramètre | Type | Description |
|---|---|---|
| arr | const ArrayPtr<char_t>& | Caractères à ajouter. |
| startIndex | int | Indice de début de la tranche. |
| charCount | int | Longueur de la tranche. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Typedef ArrayPtr
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(const SharedPtr<StringBuilder>&) method
Ajoute le contenu du constructeur au constructeur.
StringBuilder * System::Text::StringBuilder::Append(const SharedPtr<StringBuilder> &builder)
| Paramètre | Type | Description |
|---|---|---|
| constructeur | const SharedPtr<StringBuilder>& | Constructeur d’où ajouter le contenu. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Typedef SharedPtr
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(const SharedPtr<T>&) method
Ajoute la représentation sous forme de chaîne de l’objet au constructeur.
template<class T> StringBuilder * System::Text::StringBuilder::Append(const SharedPtr<T> &obj)
| Paramètre | Description |
|---|---|
| T | Object type. |
| Paramètre | Type | Description |
|---|---|---|
| obj | const SharedPtr<T>& | Object à sérialiser et ajouter. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Typedef SharedPtr
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(const String&) method
Ajoute une chaîne au constructeur.
StringBuilder * System::Text::StringBuilder::Append(const String &str)
| Paramètre | Type | Description |
|---|---|---|
| str | const String& | String à ajouter. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class String
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(const String&, int, int) method
Ajoute une tranche de chaîne au constructeur.
StringBuilder * System::Text::StringBuilder::Append(const String &str, int startIndex, int charCount)
| Paramètre | Type | Description |
|---|---|---|
| str | const String& | String à ajouter. |
| startIndex | int | Indice de début de la tranche. |
| charCount | int | Longueur de la tranche. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class String
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(double) method
Ajoute une valeur à virgule flottante au constructeur.
StringBuilder * System::Text::StringBuilder::Append(double df)
| Paramètre | Type | Description |
|---|---|---|
| df | double | Valeur à sérialiser et ajouter. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(E) method
Ajoute la représentation sous forme de chaîne de la valeur d’énumération au constructeur.
template<class E> std::enable_if<std::is_enum<E>::value, StringBuilder *>::type System::Text::StringBuilder::Append(E e)
| Paramètre | Description |
|---|---|
| E | Enum type. |
| Paramètre | Type | Description |
|---|---|---|
| e | E | Valeur à sérialiser et ajouter. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(float) method
Ajoute une valeur à virgule flottante au constructeur.
StringBuilder * System::Text::StringBuilder::Append(float f)
| Paramètre | Type | Description |
|---|---|---|
| f | float | Valeur à sérialiser et ajouter. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(int) method
Ajoute une valeur entière au constructeur.
StringBuilder * System::Text::StringBuilder::Append(int i)
| Paramètre | Type | Description |
|---|---|---|
| i | int | Valeur à sérialiser et ajouter. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++
StringBuilder::Append(T) method
Ajoute une valeur arithmétique au constructeur.
template<typename T> std::enable_if<std::is_arithmetic<T>::value, StringBuilder *>::type System::Text::StringBuilder::Append(T value)
| Paramètre | Description |
|---|---|
| T | Type arithmétique. |
| Paramètre | Type | Description |
|---|---|---|
| valeur | T | Valeur à sérialiser et ajouter. |
ReturnValue
Ce pointeur.
Voir aussi
- Class StringBuilder
- Class StringBuilder
- Namespace System::Text
- Library Aspose.Font for C++