Write()
ConsoleOutput::Write(bool) method
Outputs the string representation of the specified bool value to the output stream represented by the current object.
void System::ConsoleOutput::Write(bool value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | bool | The value to output |
ConsoleOutput::Write(const SharedPtr<Object>&) method
Outputs the string representation of the specified object to the output stream represented by the current object.
void System::ConsoleOutput::Write(const SharedPtr<Object> &value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | const SharedPtr<Object>& | The object to output |
ConsoleOutput::Write(char_t) method
Outputs the specified character value to the output stream represented by the current object.
void System::ConsoleOutput::Write(char_t value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | char_t | The value to output |
ConsoleOutput::Write(Decimal) method
Outputs the string representation of Decimal value to the output stream represented by the current object.
void System::ConsoleOutput::Write(Decimal value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | Decimal | The value to output |
ConsoleOutput::Write(double) method
Outputs the string representation of double-precision floating-point value to the output stream represented by the current object.
void System::ConsoleOutput::Write(double value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | double | The value to output |
ConsoleOutput::Write(int32_t) method
Outputs the string representation of 32-bit integer value to the output stream represented by the current object.
void System::ConsoleOutput::Write(int32_t value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | int32_t | The value to output |
ConsoleOutput::Write(int64_t) method
Outputs the string representation of 64-bit integer value to the output stream represented by the current object.
void System::ConsoleOutput::Write(int64_t value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | int64_t | The value to output |
ConsoleOutput::Write(float) method
Outputs the string representation of single-precision floating-point value to the output stream represented by the current object.
void System::ConsoleOutput::Write(float value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | float | The value to output |
ConsoleOutput::Write(const String&) method
Outputs the specified string object to the output stream represented by the current object.
void System::ConsoleOutput::Write(const String &value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | const String& | The string object to output |
ConsoleOutput::Write(uint32_t) method
Outputs the string representation of unsigned 32-bit integer value to the output stream represented by the current object.
void System::ConsoleOutput::Write(uint32_t value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | uint32_t | The value to output |
ConsoleOutput::Write(uint64_t) method
Outputs the string representation of unsigned 64-bit integer value to the output stream represented by the current object.
void System::ConsoleOutput::Write(uint64_t value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | uint64_t | The value to output |
ConsoleOutput::Write(const ArrayPtr<char_t>&) method
Outputs the string representation of the specified character array to the output stream represented by the current object.
void System::ConsoleOutput::Write(const ArrayPtr<char_t> &buffer) override
Arguments
Parameter | Type | Description |
---|---|---|
buffer | const ArrayPtr<char_t>& | The array to output |
ConsoleOutput::Write(const ArrayPtr<char_t>&, int32_t, int32_t) method
Outputs the string representation of a range of values of the specified character array to the output stream represented by the current object.
void System::ConsoleOutput::Write(const ArrayPtr<char_t> &buffer, int32_t index, int32_t count) override
Arguments
Parameter | Type | Description |
---|---|---|
buffer | const ArrayPtr<char_t>& | The array containing the values to output |
index | int32_t | The index at which the range of elements to output begins |
count | int32_t | The number of elements in the range of elements to output |
ConsoleOutput::Write(const char_t *) method
Outputs the specified c-string to the output stream represented by the current object.
void System::ConsoleOutput::Write(const char_t *value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | const char_t * | The c-string to output |
ConsoleOutput::Write(const TypeInfo&) method
Outputs the string representation of the specified TypeInfo object to the output stream represented by the current object.
void System::ConsoleOutput::Write(const TypeInfo &value) override
Arguments
Parameter | Type | Description |
---|---|---|
value | const TypeInfo& | The TypeInfo object to output |
ConsoleOutput::Write(const char *) method
void System::ConsoleOutput::Write(const char *)=delete
See Also
- Typedef SharedPtr
- Typedef ArrayPtr
- Class ConsoleOutput
- Class Object
- Class Decimal
- Class String
- Class TypeInfo
- Namespace System
- Library Aspose.Slides