OSFeature.Feature プロパティ
機能についてのクエリに使用する OSFeature クラスの静的 (Visual Basic では Shared) インスタンスを表します。このプロパティは読み取り専用です。
Public Shared ReadOnly Property Feature As OSFeature
[C#]
public static OSFeature Feature {get;}
[C++]
public: __property static OSFeature* get_Feature();
[JScript]
public static function get Feature() : OSFeature;
プロパティ値
解説
この静的 (Visual Basic では Shared) プロパティを使用し、オペレーティング システムの機能について問い合わせます。このクラスのインスタンスは作成できません。
機能のバージョンを確認するには、 GetVersionPresent メソッドを呼び出します。任意の機能または特定のバージョンが存在するかどうかを確認するには、 IsPresent メソッドを呼び出し、このクラスで提供されている機能識別子を使用して、検索する機能を指定します。
使用例
[Visual Basic, C#, C++] LayeredWindows 機能について OSFeature に問い合わせる例を次に示します。機能が存在するかどうかを確認するには、バージョンが null 参照 (Visual Basic では Nothing) かどうかを調べます。結果はテキスト ボックスに表示されます。このコードは、 textBox1
が作成され、フォーム上に配置されていることを前提にしています。
Private Sub LayeredWindows()
' Gets the version of the layered windows feature.
Dim myVersion As Version = _
OSFeature.Feature.GetVersionPresent(OSFeature.LayeredWindows)
' Prints whether the feature is available.
If Not (myVersion Is Nothing) Then
textBox1.Text = "Layered windows feature is installed." & _
ControlChars.CrLf
Else
textBox1.Text = "Layered windows feature is not installed." & _
ControlChars.CrLf
End If
End Sub
[C#]
private void LayeredWindows() {
// Gets the version of the layered windows feature.
Version myVersion =
OSFeature.Feature.GetVersionPresent(OSFeature.LayeredWindows);
// Prints whether the feature is available.
if (myVersion != null)
textBox1.Text = "Layered windows feature is installed.\n";
else
textBox1.Text = "Layered windows feature is not installed.\n";
}
[C++]
private:
void LayeredWindows() {
// Gets the version of the layered windows feature.
Version* myVersion =
OSFeature::Feature->GetVersionPresent(OSFeature::LayeredWindows);
// Prints whether the feature is available.
if (myVersion != 0)
textBox1->Text = S"Layered windows feature is installed.\n";
else
textBox1->Text = S"Layered windows feature is not installed.\n";
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
OSFeature クラス | OSFeature メンバ | System.Windows.Forms 名前空間 | Version | FeatureSupport | OSFeature | LayeredWindows