dmo
dmo

Reputation: 4083

Editing tables with MSHTML

Is there a way to create/edit a table using MSHTML without resorting to editing the underlying HTML?

Upvotes: 1

Views: 809

Answers (1)

Alex Shnayder
Alex Shnayder

Reputation: 1362

If you want to automate this you can manipulate the DOM by adding rows and cells and tables if need to the document.

One the tables and rows are there the user can edit them like any other part of the document.

Upvotes: 1

Related Questions