Skip to content

Commit 1c76f78

Browse files
authored
Merge pull request #21431 from ajpinedam/docs/ios.picker.multiplefiles
docs: update ios picker multiple files
2 parents 6cf9b4b + ab850de commit 1c76f78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/articles/features/windows-storage-pickers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ On some platforms, you can further customize the file-picking experience by util
3535
| SuggestedFileName ||||||
3636
| SuggestedStartLocation || ✔ (1) | 💬 (4) | ✔ (3) ||
3737
| SettingsIdentifier || ✔ (1) ||||
38-
| SetMultipleFileLimit() ||||||
38+
| SetMultipleFilesLimit ||||||
3939

4040
*(1) - Only for the native file pickers - see WebAssembly section below*\
4141
*(2) - For FileOpenPicker, VideosLibrary and PicturesLibrary are used to apply `image/*` and `video/*` filters*\
@@ -175,7 +175,7 @@ if (pickedFile != null)
175175
```
176176

177177
> [!NOTE]
178-
> On iOS, when making multiple selections, you can limit the number of items selected by calling the `SetMultipleFileLimit()` method and specifying the maximum number of items.
178+
> On iOS, when making multiple selections, you can limit the number of items selected by calling the `SetMultipleFilesLimit()` method and specifying the maximum number of items.
179179
>
180180
181181
##### Limiting the number of items
@@ -186,7 +186,7 @@ fileOpenPicker.SuggestedStartLocation = PickerLocationId.PicturesLibrary;
186186
fileOpenPicker.FileTypeFilter.Add(".jpg");
187187
fileOpenPicker.FileTypeFilter.Add(".png");
188188
//The user will be able to pick up to three files.
189-
fileOpenPicker.SetMultipleFileLimit(3);
189+
fileOpenPicker.SetMultipleFilesLimit(3);
190190

191191
var pickedFiles = await fileOpenPicker.PickMultipleFilesAsync();
192192
...

0 commit comments

Comments
 (0)