Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[admin] merge to live #1510

Merged
merged 7 commits into from
Feb 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions api/Project.chart.getchartelement.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ _expression_ A variable that represents a **[Chart](Project.Chart.md)** object.
|:-----|:-----|:-----|:-----|
| _x_|Required|**Long**|The X coordinate of the chart element.|
| _y_|Required|**Long**|The Y coordinate of the chart element.|
| _ElementID_|Required|**Long**|When the **GetChartElement** method returns, _ElementID_ contains the **Office.XLChartItem** value of the chart element at the specified coordinates. For more information, see [Remarks](#Remarks).|
| _Arg1_|Required|**Long**|When the method returns, _Arg1_ contains information related to the chart element. For more information, see [Remarks](#Remarks).|
| _Arg2_|Required|**Long**|When the method returns, _Arg2_ contains information related to the chart element. For more information, see [Remarks](#Remarks).|
| _ElementID_|Required|**Long**|When the **GetChartElement** method returns, _ElementID_ contains the **Office.XLChartItem** value of the chart element at the specified coordinates. For more information, see [Remarks](#remarks).|
| _Arg1_|Required|**Long**|When the method returns, _Arg1_ contains information related to the chart element. For more information, see [Remarks](#remarks).|
| _Arg2_|Required|**Long**|When the method returns, _Arg2_ contains information related to the chart element. For more information, see [Remarks](#remarks).|

## Return value

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ This topic shows how to read appointment data formatted in XML, save the data to

|Helmut Obertanner provided the following code samples. Helmut is a [Microsoft Most Valuable Professional](https://mvp.microsoft.com/) with expertise in Microsoft Office development tools in Microsoft Visual Studio and Microsoft Office Outlook.|

The following managed code samples are written in C# and Visual Basic. To run a .NET Framework managed code sample that needs to call into a Component Object Model (COM), you must use an interop assembly that defines and maps managed interfaces to the COM objects in the object model type library. For Outlook, you can use Visual Studio and the Outlook Primary Interop Assembly (PIA). Before you run managed code samples for Outlook 2013, ensure that you have installed the Outlook 2013 PIA and have added a reference to the Microsoft Outlook 15.0 Object Library component in Visual Studio. You should use the following code samples in the `ThisAddIn` class of an Outlook add-in (using Office Developer Tools for Visual Studio). The **Application** object in the code must be a trusted Outlook **Application** object provided by `ThisAddIn.Globals`. For more information about using the Outlook PIA to develop managed Outlook solutions, see the **Welcome to the Outlook Primary Interop Assembly Reference** on MSDN.
The following managed code samples are written in C# and Visual Basic. To run a .NET Framework managed code sample that needs to call into a Component Object Model (COM), you must use an interop assembly that defines and maps managed interfaces to the COM objects in the object model type library. For Outlook, use Visual Studio and the Outlook Primary Interop Assembly (PIA). Before you run managed code samples for Outlook 2013, ensure that you've installed the Outlook 2013 PIA and have added a reference to the Microsoft Outlook 15.0 Object Library component in Visual Studio. Use the following code samples in the `ThisAddIn` class of an Outlook add-in (using Office Developer Tools for Visual Studio). The **Application** object in the code must be a trusted Outlook **Application** object provided by `ThisAddIn.Globals`.
For more information about using the Outlook PIA to develop managed Outlook solutions, see the [Welcome to the Outlook Primary Interop Assembly Reference](/office/client-developer/outlook/pia/welcome-to-the-outlook-primary-interop-assembly-reference.md).
The following code samples contain the `CreateAppointmentsFromXml` method of the `Sample` class, implemented as part of an Outlook add-in project. Each project adds a reference to the Outlook PIA, which is based on the **Microsoft.Office.Interop.Outlook** namespace.
The `CreateAppointmentsFromXml` method accepts two input parameters, _application_ and _xml_:

Expand All @@ -26,13 +27,13 @@ The `CreateAppointmentsFromXml` method accepts two input parameters, _applicatio

|**Appointment data**|**Delimiting XML tag**|
|:-----|:-----|
|Entire set of appointment data|_appointments_|
|Each appointment in the set|_appointment_|
|Start time of an appointment|_starttime_|
|End time of an appointment|_endtime_|
|Title of an appointment|_subject_|
|Location of an appointment|_location_|
|Details of an appointment|_body_|
|Entire set of appointment data|<appointments>|
|Each appointment in the set|<appointment>|
|Start time of an appointment|<starttime>|
|End time of an appointment|<endtime>|
|Title of an appointment|<subject>|
|Location of an appointment|<location>|
|Details of an appointment|<body>|

The following example shows input data for the _xml_ parameter.

Expand Down Expand Up @@ -64,13 +65,11 @@ The following example shows input data for the _xml_ parameter.

```

The `CreateAppointmentsFromXml` method uses the Microsoft COM implementation of the XML Document Object Model (DOM) to load and process the XML data that _xml_ provides. `CreateAppointmentsFromXml` first checks whether _xml_ specifies a valid source of XML data. If so, it loads the data into an XML document, **DOMDocument**. Otherwise, `CreateAppointmentsFromXml` throws an exception. For more information about the XML DOM, see [DOM](../../../api/overview/Outlook.md).
For each appointment child node delimited by the <appointment> tag in the XML data, `CreateAppointmentsFromXml` looks for specific tags, uses the DOM to extract the data, and assigns the data to corresponding properties of an **AppointmentItem** object: **[Start](../../../api/Outlook.AppointmentItem.Start.md)**, **[End](../../../api/Outlook.AppointmentItem.End.md)**, **[Subject](../../../api/Outlook.AppointmentItem.Subject.md)**, **[Location](../../../api/Outlook.AppointmentItem.Location.md)**, and **[Body](../../../api/Outlook.AppointmentItem.Body.md)**. `CreateAppointmentsFromXml` then saves the appointment to the default calendar.
The `CreateAppointmentsFromXml` method uses the Microsoft COM implementation of the XML Document Object Model (DOM) to load and process the XML data that _xml_ provides. `CreateAppointmentsFromXml` first checks whether _xml_ specifies a valid source of XML data. If so, it loads the data into an XML document, **DOMDocument**. Otherwise, `CreateAppointmentsFromXml` throws an exception. For more information about the XML DOM, see [DOM](../../../api/overview/Outlook.md).
For each appointment child node delimited by the _appointment_ tag in the XML data, `CreateAppointmentsFromXml` looks for specific tags, uses the DOM to extract the data, and assigns the data to corresponding properties of an **AppointmentItem** object: **[Start](../../../api/Outlook.AppointmentItem.Start.md)**, **[End](../../../api/Outlook.AppointmentItem.End.md)**, **[Subject](../../../api/Outlook.AppointmentItem.Subject.md)**, **[Location](../../../api/Outlook.AppointmentItem.Location.md)**, and **[Body](../../../api/Outlook.AppointmentItem.Body.md)**. `CreateAppointmentsFromXml` then saves the appointment to the default calendar.
`CreateAppointmentsFromXml` uses the **[Add](../../../api/overview/Outlook.md)** method of the **List( _type_)** class in the **System.Collections.Generic** namespace to aggregate these **AppointmentItem** objects. When the method has processed all the appointments in the XML data, it returns the **AppointmentItem** objects in an array.
The following is the C# code sample.



```cs
using System;
using System.Collections.Generic;
Expand Down Expand Up @@ -160,8 +159,6 @@ namespace OutlookAddIn1

The following is the Visual Basic code sample.



```vb
Imports System.IO
Imports System.Xml
Expand Down
11 changes: 6 additions & 5 deletions word/Concepts/Customizing-Word/creating-frames-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ f1_keywords:
- vbawd10.chm5285976
ms.prod: word
ms.assetid: 0245564e-b2df-83cd-1e32-e63079970dc1
ms.date: 06/08/2019
ms.date: 02/06/2020
ms.localizationpriority: medium
---

Expand All @@ -18,7 +18,7 @@ Frames and frames pages are created with a series of HTML tags. The Visual Basic

## Frames pages in HTML

In HTML, frames pages and the frames they contain are built using a hierarchical set of <FRAMESET> and <FRAME> tags. A frameset can contain both frames and other framesets. For example, the following HTML creates a frameset with a frame on top and a frameset immediately below it. That frameset contains a frame on the left and a frameset on the right. That frameset contains two frames, one on top of the other.
In HTML, frames pages and the frames they contain are built using a hierarchical set of &lt;FRAMESET&gt; and &lt;FRAME&gt; tags. A frameset can contain both frames and other framesets. For example, the following HTML creates a frameset with a frame on top and a frameset immediately below it. That frameset contains a frame on the left and a frameset on the right. That frameset contains two frames, one on top of the other.

```xml
<FRAMESET ROWS="100, *">
Expand All @@ -33,11 +33,12 @@ In HTML, frames pages and the frames they contain are built using a hierarchical
</FRAMESET>
```

**Note** To better understand the preceding HTML example, paste the example into a blank text document, rename the document "framespage.htm", and open the document in Word or in a Web browser.
>[NOTE]
> To better understand the preceding HTML example, paste the example into a blank text document, rename the document "framespage.htm", and open the document in Word or in a Web browser.

## The Frameset Object

The **[Frameset](../../../api/Word.Frameset.md)** object encompasses the functionality of both tags. Each **Frameset** object is either of type **wdFramesetTypeFrameset** or **wdFramesetTypeFrame**, which represent the HTML tags <FRAMESET> and <FRAME> respectively. Properties beginning with "Frameset" apply to **Frameset** objects of type **wdFramesetTypeFrameset** (**[FramesetBorderColor](../../../api/Word.Frameset.FramesetBorderColor.md)** and **[FramesetBorderWidth](../../../api/Word.Frameset.FramesetBorderWidth.md)** . Properties beginning with "Frame" apply to **Frameset** objects of type **wdFramesetTypeFrame** (**[FrameDefaultURL](../../../api/Word.Frameset.FrameDefaultURL.md)**, **[FrameDisplayBorders](../../../api/Word.Frameset.FrameDisplayBorders.md)**, **[FrameLinkToFile](../../../api/Word.Frameset.FrameLinkToFile.md)**, **[FrameName](../../../api/Word.Frameset.FrameName.md)**, **[FrameResizable](../../../api/Word.Frameset.FrameResizable.md)**, and **[FrameScrollBarType](../../../api/Word.Frameset.FrameScrollbarType.md)**).
The **[Frameset](../../../api/Word.Frameset.md)** object encompasses the functionality of both tags. Each **Frameset** object is either of type **wdFramesetTypeFrameset** or **wdFramesetTypeFrame**, which represent the HTML tags &lt;FRAMESET&gt; and &lt;FRAME&gt; respectively. Properties beginning with "Frameset" apply to **Frameset** objects of type **wdFramesetTypeFrameset** (**[FramesetBorderColor](../../../api/Word.Frameset.FramesetBorderColor.md)** and **[FramesetBorderWidth](../../../api/Word.Frameset.FramesetBorderWidth.md)** . Properties beginning with "Frame" apply to **Frameset** objects of type **wdFramesetTypeFrame** (**[FrameDefaultURL](../../../api/Word.Frameset.FrameDefaultURL.md)**, **[FrameDisplayBorders](../../../api/Word.Frameset.FrameDisplayBorders.md)**, **[FrameLinkToFile](../../../api/Word.Frameset.FrameLinkToFile.md)**, **[FrameName](../../../api/Word.Frameset.FrameName.md)**, **[FrameResizable](../../../api/Word.Frameset.FrameResizable.md)**, and **[FrameScrollBarType](../../../api/Word.Frameset.FrameScrollbarType.md)**).

## Traversing the Frameset Object Hierarchy

Expand Down Expand Up @@ -224,4 +225,4 @@ Sub FramesetExample2()
End Sub
```

[!include[Support and feedback](~/includes/feedback-boilerplate.md)]
[!include[Support and feedback](~/includes/feedback-boilerplate.md)]