Updated SetInnerHTML (markdown)
parent
385abb538b
commit
a4456064e2
1 changed files with 4 additions and 2 deletions
|
|
@ -1,6 +1,8 @@
|
|||
```cpp
|
||||
void* Crafter::CppDOM::Bindings::SetInnerHTML(void* ptr, const char* html, std::size_t htmlLenght);
|
||||
void* Crafter::CppDOM::Bindings::SetInnerHTML(void* ptr, const std::string& html)
|
||||
namespace Crafter::CppDOM::Bindings {
|
||||
void* SetInnerHTML(void* ptr, const char* html, std::size_t htmlLenght);
|
||||
void* SetInnerHTML(void* ptr, const std::string& html)
|
||||
}
|
||||
```
|
||||
|
||||
Sets the innterHTML property of the javascript object in ``ptr`` to the contents of ``html``
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue