Skip to content

Commit 4e0027c

Browse files
mikeblomeColin Robertson
authored andcommitted
updated helpviewer_keywords for MFC topics (MicrosoftDocs#334)
* added disambiguation to MFC helpviewer_keywords * fixed up MFC helpviewer keywords * added correct helpviewer keywords for non-validating topics * removed some redundant keyword text
1 parent d8b7567 commit 4e0027c

1,300 files changed

Lines changed: 5581 additions & 33721 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/mfc/a-portrait-of-the-document-view-architecture.md

Lines changed: 4 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,43 +4,17 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.reviewer: ""
66
ms.suite: ""
7-
ms.technology:
8-
- "cpp-windows"
7+
ms.technology: ["cpp-windows"]
98
ms.tgt_pltfrm: ""
109
ms.topic: "article"
11-
dev_langs:
12-
- "C++"
13-
helpviewer_keywords:
14-
- "documents, views"
15-
- "multiple views, updating from document"
16-
- "document/view architecture"
17-
- "views, and user input"
18-
- "documents, accessing data from view"
19-
- "views, updating"
20-
- "input, view class"
21-
- "documents, multiple views"
22-
- "document/view architecture, accessing data from view"
23-
- "document/view architecture, about document/view architecture"
24-
- "views, accessing document data from"
10+
dev_langs: ["C++"]
11+
helpviewer_keywords: ["documents [MFC], views", "multiple views [MFC], updating from document", "document/view architecture [MFC]", "views [MFC], and user input", "documents [MFC], accessing data from view", "views [MFC], updating", "input [MFC], view class", "documents [MFC], multiple views", "document/view architecture [MFC], accessing data from view", "document/view architecture [MFC], about document/view architecture", "views [MFC], accessing document data from"]
2512
ms.assetid: 4e7f65dc-b166-45d8-bcd5-9bb0d399b946
2613
caps.latest.revision: 9
2714
author: "mikeblome"
2815
ms.author: "mblome"
2916
manager: "ghogen"
30-
translation.priority.ht:
31-
- "cs-cz"
32-
- "de-de"
33-
- "es-es"
34-
- "fr-fr"
35-
- "it-it"
36-
- "ja-jp"
37-
- "ko-kr"
38-
- "pl-pl"
39-
- "pt-br"
40-
- "ru-ru"
41-
- "tr-tr"
42-
- "zh-cn"
43-
- "zh-tw"
17+
translation.priority.ht: ["cs-cz", "de-de", "es-es", "fr-fr", "it-it", "ja-jp", "ko-kr", "pl-pl", "pt-br", "ru-ru", "tr-tr", "zh-cn", "zh-tw"]
4418
---
4519
# A Portrait of the Document/View Architecture
4620
Documents and views are paired in a typical MFC application. Data is stored in the document, but the view has privileged access to the data. The separation of document from view separates the storage and maintenance of data from its display.

docs/mfc/accessing-all-members-of-a-collection.md

Lines changed: 5 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -4,45 +4,18 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.reviewer: ""
66
ms.suite: ""
7-
ms.technology:
8-
- "cpp-windows"
7+
ms.technology: ["cpp-windows"]
98
ms.tgt_pltfrm: ""
109
ms.topic: "article"
11-
dev_langs:
12-
- "C++"
13-
helpviewer_keywords:
14-
- "MFC, collections"
15-
- "enumerations [MFC]"
16-
- "enumerating collections"
17-
- "collections, accessing"
18-
- "collection classes, accessing members"
19-
- "arrays [C++], iterating"
20-
- "iteration, collections"
21-
- "member access, collections"
22-
- "list collection iterations"
23-
- "MFC collection classes, accessing members"
24-
- "collections, looping through"
25-
- "loop structures, looping through collections"
10+
dev_langs: ["C++"]
11+
helpviewer_keywords: ["MFC, collections", "enumerations [MFC]", "enumerating collections [MFC]", "collections [MFC], accessing", "collection classes [MFC]", accessing members", "arrays [MFC], iterating", "iteration [MFC], collections", "member access [MFC], collections", "list collection iteration [MFC]s", "MFC collection classes [MFC], accessing members", "collections [MFC], looping through", "loop structures [MFC], looping through collections"]
2612
ms.assetid: 7bbae518-062e-4393-81f9-b22abd2e5f59
2713
caps.latest.revision: 10
2814
author: "mikeblome"
2915
ms.author: "mblome"
3016
manager: "ghogen"
31-
translation.priority.ht:
32-
- "de-de"
33-
- "es-es"
34-
- "fr-fr"
35-
- "it-it"
36-
- "ja-jp"
37-
- "ko-kr"
38-
- "ru-ru"
39-
- "zh-cn"
40-
- "zh-tw"
41-
translation.priority.mt:
42-
- "cs-cz"
43-
- "pl-pl"
44-
- "pt-br"
45-
- "tr-tr"
17+
translation.priority.ht: ["de-de", "es-es", "fr-fr", "it-it", "ja-jp", "ko-kr", "ru-ru", "zh-cn", "zh-tw"]
18+
translation.priority.mt: ["cs-cz", "pl-pl", "pt-br", "tr-tr"]
4619
---
4720
# Accessing All Members of a Collection
4821
The MFC array collection classes — both template-based and not — use indexes to access their elements. The MFC list and map collection classes — both template-based and not — use an indicator of type **POSITION** to describe a given position within the collection. To access one or more members of these collections, you first initialize the position indicator and then repeatedly pass that position to the collection and ask it to return the next element. The collection is not responsible for maintaining state information about the progress of the iteration. That information is kept in the position indicator. But, given a particular position, the collection is responsible for returning the next element.

docs/mfc/accessing-file-status.md

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,37 +4,17 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.reviewer: ""
66
ms.suite: ""
7-
ms.technology:
8-
- "cpp-windows"
7+
ms.technology: ["cpp-windows"]
98
ms.tgt_pltfrm: ""
109
ms.topic: "article"
11-
dev_langs:
12-
- "C++"
13-
helpviewer_keywords:
14-
- "files [C++], status information"
15-
- "examples [MFC], file status"
16-
- "files [C++], accessing"
17-
- "file status [C++]"
18-
- "status of files"
10+
dev_langs: ["C++"]
11+
helpviewer_keywords: ["files [MFC], status information", "examples [MFC], file status", "files [MFC], accessing", "file status [MFC]", "status of files [MFC]"]
1912
ms.assetid: 1b8891d6-eb0f-4037-a837-4928fe595222
2013
caps.latest.revision: 10
2114
author: "mikeblome"
2215
ms.author: "mblome"
2316
manager: "ghogen"
24-
translation.priority.ht:
25-
- "cs-cz"
26-
- "de-de"
27-
- "es-es"
28-
- "fr-fr"
29-
- "it-it"
30-
- "ja-jp"
31-
- "ko-kr"
32-
- "pl-pl"
33-
- "pt-br"
34-
- "ru-ru"
35-
- "tr-tr"
36-
- "zh-cn"
37-
- "zh-tw"
17+
translation.priority.ht: ["cs-cz", "de-de", "es-es", "fr-fr", "it-it", "ja-jp", "ko-kr", "pl-pl", "pt-br", "ru-ru", "tr-tr", "zh-cn", "zh-tw"]
3818
---
3919
# Accessing File Status
4020
`CFile` also supports getting file status, including whether the file exists, creation and modification dates and times, logical size, and path.

docs/mfc/accessing-run-time-class-information.md

Lines changed: 4 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -4,45 +4,17 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.reviewer: ""
66
ms.suite: ""
7-
ms.technology:
8-
- "cpp-windows"
7+
ms.technology: ["cpp-windows"]
98
ms.tgt_pltfrm: ""
109
ms.topic: "article"
11-
dev_langs:
12-
- "C++"
13-
helpviewer_keywords:
14-
- "CObject class, and RTTI"
15-
- "CObject class, using IsKindOf method"
16-
- "run time, class information"
17-
- "RUNTIME_CLASS macro"
18-
- "CObject class, using RUNTIME_CLASS macro"
19-
- "RTTI compiler option"
20-
- "CObject class, accessing run-time class information"
21-
- "run time"
22-
- "IsKindOf method method"
23-
- "run-time class, accessing information"
24-
- "classes [C++], run-time class information"
25-
- "run-time class"
26-
- "RUNTIME_CLASS macro, using"
10+
dev_langs: ["C++"]
11+
helpviewer_keywords: ["CObject class [MFC], and RTTI", "CObject class [MFC], using IsKindOf method [MFC]", "run time [MFC], class information", "RUNTIME_CLASS macro [MFC]", "CObject class [MFC], using RUNTIME_CLASS macro [MFC]", "RTTI compiler option [MFC]", "CObject class [MFC], accessing run-time class information", "run time [MFC]", "IsKindOf method method [MFC]", "run-time class [MFC], accessing information", "classes [MFC], run-time class information", "run-time class [MFC]", "RUNTIME_CLASS macro, using"]
2712
ms.assetid: 3445a9af-0bd6-4496-95c3-aa59b964570b
2813
caps.latest.revision: 11
2914
author: "mikeblome"
3015
ms.author: "mblome"
3116
manager: "ghogen"
32-
translation.priority.ht:
33-
- "cs-cz"
34-
- "de-de"
35-
- "es-es"
36-
- "fr-fr"
37-
- "it-it"
38-
- "ja-jp"
39-
- "ko-kr"
40-
- "pl-pl"
41-
- "pt-br"
42-
- "ru-ru"
43-
- "tr-tr"
44-
- "zh-cn"
45-
- "zh-tw"
17+
translation.priority.ht: ["cs-cz", "de-de", "es-es", "fr-fr", "it-it", "ja-jp", "ko-kr", "pl-pl", "pt-br", "ru-ru", "tr-tr", "zh-cn", "zh-tw"]
4618
---
4719
# Accessing Run-Time Class Information
4820
This article explains how to access information about the class of an object at run time.

docs/mfc/accessing-the-embedded-month-calendar-control.md

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,17 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.reviewer: ""
66
ms.suite: ""
7-
ms.technology:
8-
- "cpp-windows"
7+
ms.technology: ["cpp-windows"]
98
ms.tgt_pltfrm: ""
109
ms.topic: "article"
11-
dev_langs:
12-
- "C++"
13-
helpviewer_keywords:
14-
- "DateTimePicker control [MFC], accessing month calendar"
15-
- "CDateTimeCtrl class, accessing embedded control"
16-
- "month calendar controls, embedded in date/time picker"
17-
- "CMonthCalCtrl class, changing the font"
18-
- "month calendar controls, changing the font"
19-
- "DateTimePicker control [MFC]"
10+
dev_langs: ["C++"]
11+
helpviewer_keywords: ["DateTimePicker control [MFC], accessing month calendar", "CDateTimeCtrl class [MFC], accessing embedded control", "month calendar controls [MFC], embedded in date/time picker", "CMonthCalCtrl class [MFC], changing the font", "month calendar controls [MFC], changing the font", "DateTimePicker control [MFC]"]
2012
ms.assetid: 355e97ed-cf81-4df3-a2f8-9ddbbde93227
2113
caps.latest.revision: 11
2214
author: "mikeblome"
2315
ms.author: "mblome"
2416
manager: "ghogen"
25-
translation.priority.ht:
26-
- "cs-cz"
27-
- "de-de"
28-
- "es-es"
29-
- "fr-fr"
30-
- "it-it"
31-
- "ja-jp"
32-
- "ko-kr"
33-
- "pl-pl"
34-
- "pt-br"
35-
- "ru-ru"
36-
- "tr-tr"
37-
- "zh-cn"
38-
- "zh-tw"
17+
translation.priority.ht: ["cs-cz", "de-de", "es-es", "fr-fr", "it-it", "ja-jp", "ko-kr", "pl-pl", "pt-br", "ru-ru", "tr-tr", "zh-cn", "zh-tw"]
3918
---
4019
# Accessing the Embedded Month Calendar Control
4120
The embedded month calendar control object can be accessed from the `CDateTimeCtrl` object with a call to the [GetMonthCalCtrl](../mfc/reference/cdatetimectrl-class.md#getmonthcalctrl) member function.

docs/mfc/activation-cpp.md

Lines changed: 4 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -4,47 +4,17 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.reviewer: ""
66
ms.suite: ""
7-
ms.technology:
8-
- "cpp-windows"
7+
ms.technology: ["cpp-windows"]
98
ms.tgt_pltfrm: ""
109
ms.topic: "article"
11-
dev_langs:
12-
- "C++"
13-
helpviewer_keywords:
14-
- "OLE server applications, activation"
15-
- "OLE items, visual editing"
16-
- "activation [C++]"
17-
- "OLE [C++], in-place activation"
18-
- "OLE [C++], activation"
19-
- "in-place activation, embedded and linked items"
20-
- "activating objects"
21-
- "visual editing, activation"
22-
- "visual editing"
23-
- "documents, OLE"
24-
- "embedded objects"
25-
- "OLE [C++], editing"
26-
- "in-place activation"
27-
- "activation [C++], embedded OLE items"
28-
- "OLE activation"
10+
dev_langs: ["C++"]
11+
helpviewer_keywords: ["OLE server applications [MFC], activation", "OLE items [MFC], visual editing", "activation [MFC]", "OLE [MFC], in-place activation", "OLE [MFC], activation", "in-place activation, embedded and linked items", "activating objects", "visual editing, activation", "visual editing", "documents [MFC], OLE", "embedded objects [MFC]", "OLE [MFC], editing", "in-place activation", "activation [MFC], embedded OLE items", "OLE activation [MFC]"]
2912
ms.assetid: ed8357d9-e487-4aaa-aa6b-2edc4de25dfa
3013
caps.latest.revision: 9
3114
author: "mikeblome"
3215
ms.author: "mblome"
3316
manager: "ghogen"
34-
translation.priority.ht:
35-
- "cs-cz"
36-
- "de-de"
37-
- "es-es"
38-
- "fr-fr"
39-
- "it-it"
40-
- "ja-jp"
41-
- "ko-kr"
42-
- "pl-pl"
43-
- "pt-br"
44-
- "ru-ru"
45-
- "tr-tr"
46-
- "zh-cn"
47-
- "zh-tw"
17+
translation.priority.ht: ["cs-cz", "de-de", "es-es", "fr-fr", "it-it", "ja-jp", "ko-kr", "pl-pl", "pt-br", "ru-ru", "tr-tr", "zh-cn", "zh-tw"]
4818
---
4919
# Activation (C++)
5020
This article explains the role of activation in the visual editing of OLE items. After a user has embedded an OLE item in a container document, it may need to be used. To do this, the user double-clicks the item, which activates that item. The most frequent activity for activation is editing. Many current OLE items, when activated for editing, cause the menus and toolbars in the current frame window to change to reflect those belonging to the server application that created the item. This behavior, known as in-place activation, allows the user to edit any embedded item in a compound document without leaving the container document's window.

docs/mfc/activation-verbs.md

Lines changed: 4 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,17 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.reviewer: ""
66
ms.suite: ""
7-
ms.technology:
8-
- "cpp-windows"
7+
ms.technology: ["cpp-windows"]
98
ms.tgt_pltfrm: ""
109
ms.topic: "article"
11-
dev_langs:
12-
- "C++"
13-
helpviewer_keywords:
14-
- "verbs"
15-
- "OLE [C++], activation"
16-
- "edit verb"
17-
- "activation [C++], verbs"
18-
- "OLE [C++], editing"
19-
- "Primary verb"
20-
- "OLE activation"
10+
dev_langs: ["C++"]
11+
helpviewer_keywords: ["verbs [MFC]", "OLE [MFC], activation", "edit verb [MFC]", "activation [MFC], verbs", "OLE [MFC], editing", "Primary verb [MFC]", "OLE activation {MFC]"]
2112
ms.assetid: eb56ff23-1de8-43ad-abeb-dc7346ba7b70
2213
caps.latest.revision: 9
2314
author: "mikeblome"
2415
ms.author: "mblome"
2516
manager: "ghogen"
26-
translation.priority.ht:
27-
- "cs-cz"
28-
- "de-de"
29-
- "es-es"
30-
- "fr-fr"
31-
- "it-it"
32-
- "ja-jp"
33-
- "ko-kr"
34-
- "pl-pl"
35-
- "pt-br"
36-
- "ru-ru"
37-
- "tr-tr"
38-
- "zh-cn"
39-
- "zh-tw"
17+
translation.priority.ht: ["cs-cz", "de-de", "es-es", "fr-fr", "it-it", "ja-jp", "ko-kr", "pl-pl", "pt-br", "ru-ru", "tr-tr", "zh-cn", "zh-tw"]
4018
---
4119
# Activation: Verbs
4220
This article explains the role primary and secondary verbs play in OLE [activation](../mfc/activation-cpp.md).

docs/mfc/active-document-classes.md

Lines changed: 5 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,18 @@ ms.custom: ""
44
ms.date: "11/04/2016"
55
ms.reviewer: ""
66
ms.suite: ""
7-
ms.technology:
8-
- "cpp-windows"
7+
ms.technology: ["cpp-windows"]
98
ms.tgt_pltfrm: ""
109
ms.topic: "article"
11-
f1_keywords:
12-
- "vc.classes.document"
13-
dev_langs:
14-
- "C++"
15-
helpviewer_keywords:
16-
- "Active document classes"
10+
f1_keywords: ["vc.classes.document"]
11+
dev_langs: ["C++"]
12+
helpviewer_keywords: ["Active document classes [MFC]"]
1713
ms.assetid: cc20af37-b658-406d-8148-7670737f4c03
1814
caps.latest.revision: 9
1915
author: "mikeblome"
2016
ms.author: "mblome"
2117
manager: "ghogen"
22-
translation.priority.ht:
23-
- "cs-cz"
24-
- "de-de"
25-
- "es-es"
26-
- "fr-fr"
27-
- "it-it"
28-
- "ja-jp"
29-
- "ko-kr"
30-
- "pl-pl"
31-
- "pt-br"
32-
- "ru-ru"
33-
- "tr-tr"
34-
- "zh-cn"
35-
- "zh-tw"
18+
translation.priority.ht: ["cs-cz", "de-de", "es-es", "fr-fr", "it-it", "ja-jp", "ko-kr", "pl-pl", "pt-br", "ru-ru", "tr-tr", "zh-cn", "zh-tw"]
3619
---
3720
# Active Document Classes
3821
Active documents can be displayed either in the entire client window of a Web browser, such as Internet Explorer 5.5, or in an Active container, such as the Microsoft Office Binder, that supports Active documents.

0 commit comments

Comments
 (0)