共用方式為


UrlEditor.Filter 屬性

定義

取得編輯器的檔名篩選條件字串。 這是用來判斷出現在對話方塊的檔案清單中的項目。

protected:
 virtual property System::String ^ Filter { System::String ^ get(); };
protected virtual string Filter { get; }
member this.Filter : string
Protected Overridable ReadOnly Property Filter As String

屬性值

String

字串,包含有關對話方塊中可用之檔案篩選選項的資訊。

備註

屬性 Filter 會指定所有檔案的篩選字串 (*。 *) 。

篩選字串包含一或多個篩選選項。 每個篩選選項都包含篩選的描述,後面接著垂直線 (|) 和篩選模式。 不同篩選選項的字串會以垂直線分隔。

以下是包含兩個篩選選項的篩選字串範例:

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

您可以在篩選選項中指定數個篩選模式,方法是以分號分隔篩選模式。 以下是篩選字串的範例,其中第一個篩選選項會指定三種篩選模式:

"Text Files(*.txt;*.text;*.lst)|*.txt;*.text;*.lst|All Files (*.*)|*.*".

適用於