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
Specifies a reference to a **POSITION** value returned by a previous `GetNextAssoc` or `GetStartPosition` call.
172
172
173
173
*KEY*
174
174
Template parameter specifying the type of the map's key.
175
175
176
-
`rKey`
176
+
*rKey*
177
177
Specifies the returned key of the retrieved element.
178
178
179
179
*VALUE*
180
180
Template parameter specifying the type of the map's value.
181
181
182
-
`rValue`
182
+
*rValue*
183
183
Specifies the returned value of the retrieved element.
184
184
185
185
### Remarks
186
186
This function is most useful for iterating through all the elements in the map. Note that the position sequence is not necessarily the same as the key value sequence.
187
187
188
-
If the retrieved element is the last in the map, then the new value of `rNextPosition` is set to **NULL**.
188
+
If the retrieved element is the last in the map, then the new value of *rNextPosition* is set to **NULL**.
Copy file name to clipboardExpand all lines: docs/mfc/reference/cmapptrtoptr-class.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ class CMapPtrToPtr : public CObject
22
22
```
23
23
24
24
## Members
25
-
The member functions of `CMapPtrToPtr` are similar to the member functions of class [CMapStringToOb](../../mfc/reference/cmapstringtoob-class.md). Because of this similarity, you can use the `CMapStringToOb` reference documentation for member function specifics. Wherever you see a `CObject` pointer as a function parameter or return value, substitute a pointer to `void`. Wherever you see a `CString` or a **const** pointer to `char` as a function parameter or return value, substitute a pointer to `void`.
25
+
The member functions of `CMapPtrToPtr` are similar to the member functions of class [CMapStringToOb](../../mfc/reference/cmapstringtoob-class.md). Because of this similarity, you can use the `CMapStringToOb` reference documentation for member function specifics. Wherever you see a `CObject` pointer as a function parameter or return value, substitute a pointer to **void**. Wherever you see a `CString` or a **const** pointer to `char` as a function parameter or return value, substitute a pointer to **void**.
Copy file name to clipboardExpand all lines: docs/mfc/reference/cmapptrtoword-class.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ class CMapPtrToWord : public CObject
22
22
```
23
23
24
24
## Members
25
-
The member functions of `CMapPtrToWord` are similar to the member functions of class [CMapStringToOb](../../mfc/reference/cmapstringtoob-class.md). Because of this similarity, you can use the `CMapStringToOb` reference documentation for member function specifics. Wherever you see a `CObject` pointer as a function parameter or return value, substitute **WORD**. Wherever you see a `CString` or a **const** pointer to `char` as a function parameter or return value, substitute a pointer to `void`.
25
+
The member functions of `CMapPtrToWord` are similar to the member functions of class [CMapStringToOb](../../mfc/reference/cmapstringtoob-class.md). Because of this similarity, you can use the `CMapStringToOb` reference documentation for member function specifics. Wherever you see a `CObject` pointer as a function parameter or return value, substitute **WORD**. Wherever you see a `CString` or a **const** pointer to **char** as a function parameter or return value, substitute a pointer to **void**.
A reference to a pointer to a `CObject` object; or **NULL** if the map is empty or `key` is out of range.
423
+
A reference to a pointer to a `CObject` object; or **NULL** if the map is empty or *key* is out of range.
424
424
425
425
### Remarks
426
426
Thus it can be used only on the left side of an assignment statement (an l-value). If there is no map element with the specified key, then a new element is created.
@@ -487,7 +487,7 @@ BOOL RemoveKey(LPCTSTR key);
487
487
```
488
488
489
489
### Parameters
490
-
`key`
490
+
*key*
491
491
Specifies the string used for map lookup.
492
492
493
493
### Return Value
@@ -532,10 +532,10 @@ void SetAt(
532
532
```
533
533
534
534
### Parameters
535
-
`key`
535
+
*key*
536
536
Specifies the string that is the key of the new element.
537
537
538
-
`newValue`
538
+
*newValue*
539
539
Specifies the `CObject` pointer that is the value of the new element.
Copy file name to clipboardExpand all lines: docs/mfc/reference/cmapstringtoptr-class.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ class CMapStringToPtr : public CObject
22
22
```
23
23
24
24
## Members
25
-
The member functions of `CMapStringToPtr` are similar to the member functions of class [CMapStringToOb](../../mfc/reference/cmapstringtoob-class.md). Because of this similarity, you can use the `CMapStringToOb` reference documentation for member function specifics. Wherever you see a `CObject` pointer as a function parameter or return value, substitute a pointer to `void`.
25
+
The member functions of `CMapStringToPtr` are similar to the member functions of class [CMapStringToOb](../../mfc/reference/cmapstringtoob-class.md). Because of this similarity, you can use the `CMapStringToOb` reference documentation for member function specifics. Wherever you see a `CObject` pointer as a function parameter or return value, substitute a pointer to **void**.
0 commit comments