다음을 통해 공유


FileConnectionManagerUIArgs.FileFilter 속성

Gets or sets a pipe-delimited String containing the file types that are valid for the connection.

네임스페이스:  Microsoft.SqlServer.Dts.Runtime.Design
어셈블리:  Microsoft.SqlServer.Dts.Design(Microsoft.SqlServer.Dts.Design.dll)

구문

‘선언
Public Property FileFilter As String 
    Get 
    Set
‘사용 방법
Dim instance As FileConnectionManagerUIArgs 
Dim value As String 

value = instance.FileFilter

instance.FileFilter = value
public string FileFilter { get; set; }
public:
property String^ FileFilter {
    String^ get ();
    void set (String^ value);
}
member FileFilter : string with get, set
function get FileFilter () : String 
function set FileFilter (value : String)

속성 값

유형: System.String
A String containing the file types that are valid for the connection.

주의

For the fileFilter, the default filter, if not specified, is to show all files. To limit the files shown, the fileFilter string can specify only those types that are valid for the connection. For example, in an XML task, you may only want the user to select XML files, so the fileFilter would be *.XML.

For each filtering option, the filter string contains a description of the filter, followed by the vertical bar (|) and the filter pattern. The strings for different filtering options are separated by the vertical bar.

The following is an example of a filter string:

"Text files (*.txt)|*.txt|All files (*.*)|*.*"

You can add several filter patterns to a filter by separating the file types with semicolons. For example:

"Image Files(*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|All files (*.*)|*.*"

The format and syntax of this fileFilter string is identical to the Filter property found on the OpenFileDialog. For more information on the "OpenFileDialog Class", see the .NET Framework Class Library.

참고 항목

참조

FileConnectionManagerUIArgs 클래스

Microsoft.SqlServer.Dts.Runtime.Design 네임스페이스