Skip to content

Commit 741263b

Browse files
authored
Merge pull request MicrosoftDocs#983 from msebolt/format-mfc-reference-pr2
Format mfc reference pr2
2 parents 6435e85 + bae1fd1 commit 741263b

31 files changed

+725
-724
lines changed

docs/mfc/reference/cautohidedocksite-class.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ virtual BOOL CanAcceptPane(const CBasePane* pBar) const;
8888
|||
8989
|-|-|
9090
|Parameter|Description|
91-
|[in] `pBar`|The base pane that the framework tests.|
91+
|[in] *pBar*|The base pane that the framework tests.|
9292

9393
### Return Value
94-
`TRUE` if `pBar` is derived from `CMFCAutoHideBar`; `FALSE` otherwise.
94+
`TRUE` if *pBar* is derived from `CMFCAutoHideBar`; `FALSE` otherwise.
9595

9696
### Remarks
9797
If a base pane object is derived from `CMFCAutoHideBar`, it can contain a `CAutoHideDockSite`.
@@ -111,14 +111,14 @@ virtual void DockPane(
111111
|||
112112
|-|-|
113113
|Parameter|Description|
114-
|[in] `pWnd`|The pane that the framework docks.|
115-
|[in] `dockMethod`|Docking options for the pane.|
116-
|[in] `lpRect`|A rectangle that specifies the boundaries for the docked pane.|
114+
|[in] *pWnd*|The pane that the framework docks.|
115+
|[in] *dockMethod*|Docking options for the pane.|
116+
|[in] *lpRect*|A rectangle that specifies the boundaries for the docked pane.|
117117

118118
### Remarks
119-
The default implementation does not use the parameter `dockMethod`, which is provided for future use.
119+
The default implementation does not use the parameter *dockMethod*, which is provided for future use.
120120

121-
If `lpRect` is `NULL`, the framework puts the pane in the default location on the dock site. If the dock site is horizontal, the default location is at the far left of the dock site. Otherwise, the default location is at the top of the dock site.
121+
If *lpRect* is `NULL`, the framework puts the pane in the default location on the dock site. If the dock site is horizontal, the default location is at the far left of the dock site. Otherwise, the default location is at the top of the dock site.
122122

123123
## <a name="getalignrect"></a> CAutoHideDockSite::GetAlignRect
124124
Retrieves the size of the dock site in screen coordinates.
@@ -132,7 +132,7 @@ void GetAlignRect(CRect& rect) const;
132132
|||
133133
|-|-|
134134
|Parameter|Description|
135-
|[in] `rect`|A reference to a rectangle. The method stores the size of the dock site in this rectangle.|
135+
|[in] *rect*|A reference to a rectangle. The method stores the size of the dock site in this rectangle.|
136136

137137
### Remarks
138138
The rectangle is adjusted for the offset margins so that they are not included.
@@ -155,7 +155,7 @@ void SetOffsetLeft(int nOffset);
155155
```
156156

157157
### Parameters
158-
[in] `nOffset`
158+
[in] *nOffset*
159159
The new offset.
160160

161161
### Remarks
@@ -169,7 +169,7 @@ void SetOffsetRight(int nOffset);
169169
```
170170

171171
### Parameters
172-
[in] `nOffset`
172+
[in] *nOffset*
173173
The new offset.
174174

175175
### Remarks
@@ -187,10 +187,10 @@ virtual void RepositionPanes(CRect& rectNewClientArea);
187187
|||
188188
|-|-|
189189
|Parameter|Description|
190-
|[in] `rectNewClientArea`|A reserved value.|
190+
|[in] *rectNewClientArea*|A reserved value.|
191191

192192
### Remarks
193-
The default implementation does not use `rectNewClientArea`. It redraws the panes with the global toolbar margins and button spacing.
193+
The default implementation does not use *rectNewClientArea*. It redraws the panes with the global toolbar margins and button spacing.
194194

195195
## <a name="unsetautohidemode"></a> CAutoHideDockSite::UnSetAutoHideMode
196196
Calls [CMFCAutoHideBar::UnSetAutoHideMode](../../mfc/reference/cmfcautohidebar-class.md#unsetautohidemode) for objects on the dock site.
@@ -204,10 +204,10 @@ void UnSetAutoHideMode(CMFCAutoHideBar* pAutoHideToolbar);
204204
|||
205205
|-|-|
206206
|Parameter|Description|
207-
|[in] `pAutoHideToolbar`|A pointer to a [CMFCAutoHideBar](../../mfc/reference/cmfcautohidebar-class.md) object pane located on the `CAutoHideDockSite`.|
207+
|[in] *pAutoHideToolbar*|A pointer to a [CMFCAutoHideBar](../../mfc/reference/cmfcautohidebar-class.md) object pane located on the `CAutoHideDockSite`.|
208208

209209
### Remarks
210-
This method searches for the row that contains `pAutoHideToolbar`. It calls `CMFCAutoHideBar.UnSetAutoHideMode` for all the `CMFCAutoHideBar` objects on that row. If `pAutoHideToolbar` is not found or it is `NULL`, this method calls `CMFCAutoHideBar.UnSetAutoHideMode` for all the `CMFCAutoHideBar` objects on the `CAutoHideDockSite`.
210+
This method searches for the row that contains *pAutoHideToolbar*. It calls `CMFCAutoHideBar.UnSetAutoHideMode` for all the `CMFCAutoHideBar` objects on that row. If *pAutoHideToolbar* is not found or it is `NULL`, this method calls `CMFCAutoHideBar.UnSetAutoHideMode` for all the `CMFCAutoHideBar` objects on the `CAutoHideDockSite`.
211211

212212
## See Also
213213
[Hierarchy Chart](../../mfc/hierarchy-chart.md)

docs/mfc/reference/cbasekeyframe-class.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ virtual BOOL AddToStoryboard(
6767
```
6868

6969
### Parameters
70-
`pStoryboard`
70+
*pStoryboard*
7171
A pointer to a storyboard.
7272

73-
`bDeepAdd`
73+
*bDeepAdd*
7474
If this parameter is TRUE and the keyframe being added depends on some other keyframe or transition, this method tries to add this keyframe or transition to storyboard first.
7575

7676
### Return Value

0 commit comments

Comments
 (0)