SpiecsEngine
 
Loading...
Searching...
No Matches

◆ ToString()

virtual std::string Spices::SlateResizeEvent::ToString ( ) const
inlineoverridevirtual

Serialize this Event Class to string.

Returns
Returns Serialized string.

Reimplemented from Spices::Event.

Definition at line 52 of file SlateEvent.h.

53 {
54 std::stringstream ss;
55 ss << "SlateResizeEvent: " << m_Width << ", " << m_Height;
56
57 return ss.str();
58 }
uint32_t m_Height
New Viewport Height.
Definition SlateEvent.h:80
uint32_t m_Width
Specific this Class Type with SlateResize.
Definition SlateEvent.h:75

References m_Height, and m_Width.