DataMemberConverter.GetStandardValuesExclusive(ITypeDescriptorContext) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,表示 GetStandardValues() 所傳回的標準值集合是否為所有可能值的清單。
public:
override bool GetStandardValuesExclusive(System::ComponentModel::ITypeDescriptorContext ^ context);
public override bool GetStandardValuesExclusive (System.ComponentModel.ITypeDescriptorContext context);
override this.GetStandardValuesExclusive : System.ComponentModel.ITypeDescriptorContext -> bool
Public Overrides Function GetStandardValuesExclusive (context As ITypeDescriptorContext) As Boolean
參數
- context
- ITypeDescriptorContext
提供格式內容的 ITypeDescriptorContext 物件。
傳回
如果從 TypeConverter.StandardValuesCollection 傳回的 GetStandardValues() 是所有可能有效值的獨佔清單,則為 true
,如果可能為其他的值,則為 false
。
在這個類別中實作時,這個方法永遠傳回 false
。
備註
如果是獨占清單 (例如在列舉資料型別中),則沒有其他有效值。 如果清單不是獨佔的,則除了提供的標準值清單之外還有其他有效值 GetStandardValues 。
給繼承者的注意事項
如果您想要轉換的類型支援標準值,請覆寫這個方法。
可以使用 context
參數來擷取環境的其他資訊,而這個轉換子就是從這個環境叫用的。 可能是 null
,因此您應該一律檢查。 此外,物件的屬性 context
也可能傳回 null
。