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
// Add a descriptive paragraph following the main heading.
14
+
paragraph=section.AddParagraph()asWParagraph;
15
+
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. From their furry black and white bodies to their shy and docile nature, they are considered one of the world's most loved animals.");
16
+
17
+
// Add a subheading under the main section and apply Heading 2 style
18
+
paragraph=section.AddParagraph()asWParagraph;
19
+
paragraph.AppendText("Opposable Pseudo Thumb");
20
+
paragraph.ApplyStyle(BuiltinStyle.Heading2);
21
+
22
+
// Add a paragraph describing content relevant to the first subheading.
23
+
paragraph=section.AddParagraph()asWParagraph;
24
+
paragraph.AppendText("A characteristic of the giant panda that has mystified scientists is their movable, elongated wrist bone that acts like an opposable thumb. This human-like quality that helps give them even more of a cuddly-panda appearance enables the giant panda to pick up objects and even eat sitting up.");
25
+
26
+
// Add another subheading under the main section and apply Heading 2 style.
27
+
paragraph=section.AddParagraph()asWParagraph;
28
+
paragraph.AppendText("Small panda or Large Raccoon?");
29
+
paragraph.ApplyStyle(BuiltinStyle.Heading2);
30
+
31
+
// Add a paragraph with content relevant to the second subheading.
32
+
paragraph=section.AddParagraph()asWParagraph;
33
+
paragraph.AppendText("Giant pandas are generally referred to as bears and are typically called panda bears rather than giant pandas.");
34
+
35
+
// Add a second main heading and apply Heading 1 style.
36
+
paragraph=section.AddParagraph()asWParagraph;
37
+
paragraph.AppendText("Adventure Works Cycles");
38
+
paragraph.ApplyStyle(BuiltinStyle.Heading1);
39
+
40
+
// Add a paragraph with descriptive content for the second main section.
41
+
paragraph=section.AddParagraph()asWParagraph;
42
+
paragraph.AppendText("Adventure Works Cycles, the fictitious company on which the AdventureWorks sample databases are based, is a large, multinational manufacturing company.");
0 commit comments