You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
paragraph.AppendText("The giant panda, which only lives in China outside of captivity, has captured the hearts of people of all ages across the globe.");
16
+
17
+
// Add a paragraph and append text to it.
18
+
paragraph=section.AddParagraph()asWParagraph;
19
+
paragraph.AppendText("Small panda or Large Raccoon?");
20
+
// Apply heading level 2.
21
+
paragraph.ApplyStyle(BuiltinStyle.Heading2);
22
+
// Add a paragraph and append text to it.
23
+
paragraph=section.AddParagraph()asWParagraph;
24
+
paragraph.AppendText("Giant pandas are generally referred to as bears and are typically called panda bears rather than giant pandas.it has several characteristics in common with the red panda.");
25
+
26
+
// Add a paragraph and append text to it.
27
+
paragraph=section.AddParagraph()asWParagraph;
28
+
paragraph.AppendText("Adventure Works Cycles");
29
+
// Apply heading level 1.
30
+
paragraph.ApplyStyle(BuiltinStyle.Heading1);
31
+
// Add a paragraph and append text to it.
32
+
paragraph=section.AddParagraph()asWParagraph;
33
+
paragraph.AppendText("Adventure Works Cycles, the fictitious company on which the AdventureWorks sample databases are based, is a large, multinational manufacturing company.");
34
+
35
+
// Add a paragraph and append text to it.
36
+
paragraph=section.AddParagraph()asWParagraph;
37
+
paragraph.AppendText("Product Overview");
38
+
// Apply heading level 2.
39
+
paragraph.ApplyStyle(BuiltinStyle.Heading2);
40
+
// Add a paragraph and append text to it.
41
+
paragraph=section.AddParagraph()asWParagraph;
42
+
paragraph.AppendText("While its base operation is located in Bothell, Washington with 290 employees, several regional sales teams are located throughout their market base.");
0 commit comments