Skip to content

Update FolderBrowserDialog.xml #9796

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

Merged
merged 3 commits into from
Apr 17, 2024
Merged
Changes from 1 commit
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
18 changes: 13 additions & 5 deletions xml/System.Windows.Forms/FolderBrowserDialog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -398,9 +398,17 @@ This class provides a way to prompt the user to browse, create, and eventually s
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
<summary>Gets or sets a value indicating whether the dialog box allows multiple folders to be selected.</summary>
<value>
<see langword="true" /> if the dialog box allows multiple folders to be selected together or concurrently; otherwise, <see langword="false" />. The default value is <see langword="false" />.
</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
Use the <xref:System.Windows.Forms.FolderBrowserDialog.SelectedPaths%2A> property to access the full list of selected folders.
]]>
</format>
</remarks>
</Docs>
</Member>
<Member MemberName="OkRequiresInteraction">
Expand Down Expand Up @@ -692,8 +700,8 @@ This class provides a way to prompt the user to browse, create, and eventually s
<ReturnType>System.String[]</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<summary>Retrieves the paths of all selected folders in the dialog box.</summary>
<value>An array of folder paths for all the selected folders in the dialog box. If no folders are selected, an empty array is returned.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down
Loading