NotesCommentsLayouting

Html5Options.NotesCommentsLayouting property

Provides options that control how notes and comments is placed in exported document. Read/write INotesCommentsLayoutingOptions.

public INotesCommentsLayoutingOptions NotesCommentsLayouting { get; set; }

Examples

Example:

[C#]

using (Presentation pres = new Presentation("test.pptx"))
{
  pres.Save("index.html", SaveFormat.Html5, new Html5Options()
  {
      OutputPath = "test_pptx"
      NotesCommentsLayouting = new NotesCommentsLayoutingOptions(){ NotesPosition = NotesPositions.BottomTruncated }
  });
}

See Also