FileDialogFilters.Add(String, String, Object) Method

Definition

Adds a new file filter to the list of filters in the Files of type list box in the File dialog box, and returns a FileDialogFilter object that represents the newly added file filter.

public Microsoft.Office.Core.FileDialogFilter Add (string Description, string Extensions, object Position);
abstract member Add : string * string * obj -> Microsoft.Office.Core.FileDialogFilter
Public Function Add (Description As String, Extensions As String, Optional Position As Object) As FileDialogFilter

Parameters

Description
String

Required String. The text representing the description of the file extension you want to add to the list of filters.

Extensions
String

Required String. The text representing the file extension you want to add to the list of filters. More than one extension may be specified and each must be separated by a semi-colon (;). For example, the Extensions argument can be assigned to the string: "*.txt; *.htm".Note Parentheses do not need to be added around the extensions. Office will automatically add parentheses around the extensions string when the description and extensions strings are concatenated into one file filter item.

Position
Object

Optional Object. A number that indicates the position of the new control in the filter list. The new filter will be inserted before the filter at this position. If this argument is omitted, the filter is added at the end of the list.

Returns

Remarks

Each filter in a list is made up of two parts: the file extension (e.g. .txt) and the text description of the file extension (e.g. Text Files). Together, the file filter would appear in the Files of type list box as: Text Files (*.txt).

Note that when a filter is added to the list, the default filters are not removed.

Filters are only displayed when the Windows option is checked.

If Position is invalid, an out of range runtime error is displayed. If the Description and Extensions values are invalid, a runtime error (parse) is displayed.

Folder picker dialogs do not have filters. Therefore, filter methods do not apply to the folder picker.

Applies to