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.
13
+
// Add a paragraph and append text to it.
23
14
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.");
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.");
25
16
26
-
// Add another subheading under the main section and apply Heading 2 style.
17
+
// Add a paragraph and append text to it.
27
18
paragraph=section.AddParagraph()asWParagraph;
28
19
paragraph.AppendText("Small panda or Large Raccoon?");
20
+
// Apply heading level 2.
29
21
paragraph.ApplyStyle(BuiltinStyle.Heading2);
30
-
31
-
// Add a paragraph with content relevant to the second subheading.
22
+
// Add a paragraph and append text to it.
32
23
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.");
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.");
34
25
35
-
// Add a second main heading and apply Heading 1 style.
26
+
// Add a paragraph and append text to it.
36
27
paragraph=section.AddParagraph()asWParagraph;
37
28
paragraph.AppendText("Adventure Works Cycles");
29
+
// Apply heading level 1.
38
30
paragraph.ApplyStyle(BuiltinStyle.Heading1);
39
-
40
-
// Add a paragraph with descriptive content for the second main section.
31
+
// Add a paragraph and append text to it.
41
32
paragraph=section.AddParagraph()asWParagraph;
42
33
paragraph.AppendText("Adventure Works Cycles, the fictitious company on which the AdventureWorks sample databases are based, is a large, multinational manufacturing company.");
43
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