FileTypeFilterAttribute(String, Int32, String[]) Constructor
Namespace: DevExpress.Persistent.Base
Assembly: DevExpress.Persistent.Base.v19.2.dll
Declaration
public FileTypeFilterAttribute(
string filterID,
int index,
params string[] extensions
)
Public Sub New(
filterID As String,
index As Integer,
ParamArray extensions As String()
)
public FileTypeFilterAttribute(
string filterID,
int index,
params string[] extensions
)
Public Sub New(
filterID As String,
index As Integer,
ParamArray extensions As String()
)
public FileTypeFilterAttribute(
string filterID,
int index,
params string[] extensions
)
Public Sub New(
filterID As String,
index As Integer,
ParamArray extensions As String()
)
Parameters
Name |
Type |
Description |
filterID |
String |
A string specifying the file type filter identifier. This parameter's value is assigned to the FileTypeFilterAttribute.FilterID property.
|
index |
Int32 |
An integer value specifying the index of the file type filter. This index allows you to arrange the type filters in the required order, when multiple FileTypeFilter attributes are applied.
|
extensions |
String[] |
A variable number of strings that specify the type filter's file extensions. These extensions can be retrieved via the FileTypeFilterAttribute.GetExtensions method.
|
Parameters
Name |
Type |
Description |
filterID |
String |
A string specifying the file type filter identifier. This parameter's value is assigned to the FileTypeFilterAttribute.FilterID property.
|
index |
Int32 |
An integer value specifying the index of the file type filter. This index allows you to arrange the type filters in the required order, when multiple FileTypeFilter attributes are applied.
|
extensions |
String[] |
A variable number of strings that specify the type filter's file extensions. These extensions can be retrieved via the FileTypeFilterAttribute.GetExtensions method.
|
Parameters
Name |
Type |
Description |
filterID |
String |
A string specifying the file type filter identifier. This parameter's value is assigned to the FileTypeFilterAttribute.FilterID property.
|
index |
Int32 |
An integer value specifying the index of the file type filter. This index allows you to arrange the type filters in the required order, when multiple FileTypeFilter attributes are applied.
|
extensions |
String[] |
A variable number of strings that specify the type filter's file extensions. These extensions can be retrieved via the FileTypeFilterAttribute.GetExtensions method.
|
See Also