Maximize productivity with
30% off* for a limited time
using BOOSTDEV30.
Includes 3- and 5-packs.
*Some exclusions may apply.New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.ISlide slide2 = pres.Slides[1];
INotesSlide notesSlide = slide2.AddNotesSlide();
notesSlide.NotesTextBody.Paragraphs.Clear();
ITextPart notesTextPart = notesSlide.NotesTextBody.Paragraphs[0].TextParts.Add();
notesTextPart.Text = "Some note text here for testing";
ITable table = notesSlide.Shapes.AddTable(5, 8, 4.4 * 88, 5.6 * 88, 8.63 * 88, 5.4 * 88);
table.BuiltInStyle = BuiltInTableStyle.MediumStyle2;
table.HasBandedRows = true;
table.Hidden = false;table.HasHeaderRow = true;table.Title = "Pilot Table";IColumns columns = table.Columns;
columns[0].Width = 0.94 * 88;
columns[1].Width = 0.46 * 88;
columns[2].Width = 1.18 * 88;
columns[3].Width = 3.54 * 88;
columns[4].Width = 1.18 * 88;
columns[5].Width = 0.28 * 88;
columns[6].Width = 0.42 * 88;
columns[7].Width = 0.63 * 88;
IRows rows = table.Rows;
bool topRow = true;
foreach (IRow row in rows) { row.Height = 28; if (topRow)
{
AddHeaders(row);
topRow = false;
}
else
{
AddRowData(row, columns);
}
}
Thank you
Query |
Response |
How do I get the table to show up in the Notes section in Presentation view? |
This is the behavior of PowerPoint presentation file format. The tables will not be visible in normal view. |
Why does the table's coordinates origin seem to be in the slide and not the Notes? |
This is also the behavior or PowerPoint presentation. There is no separate co-ordinate for notes view. We must follow the same as slide. |
How can I adjust the font size in the Notes section, both the text portion and in the table? |
We can format the text that we add to notes pages. Please refer the below documentation for the same.
|