OSFeature.Feature プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
機能の問い合わせに使用する OSFeature クラスの static
インスタンスを取得します。 このプロパティは読み取り専用です。
public:
static property System::Windows::Forms::OSFeature ^ Feature { System::Windows::Forms::OSFeature ^ get(); };
public static System.Windows.Forms.OSFeature Feature { get; }
static member Feature : System.Windows.Forms.OSFeature
Public Shared ReadOnly Property Feature As OSFeature
プロパティ値
OSFeature クラスのインスタンス。
例
次の例では、この機能のクエリ OSFeature を実行 LayeredWindows します。 バージョンが かどうかを確認して、機能が null
存在するかどうかを確認します。 結果がテキスト ボックスに表示されます。 このコードは、 textBox1
が作成され、フォームに配置されていることを前提としています。
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 != nullptr )
{
textBox1->Text = "Layered windows feature is installed.\n";
}
else
{
textBox1->Text = "Layered windows feature is not installed.\n";
}
}
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";
}
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 (myVersion IsNot 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
注釈
オペレーティング システムの機能を照会するには、この static
プロパティを使用します。 このクラスのインスタンスを作成することはできません。
機能のバージョンを確認するには、 メソッドを GetVersionPresent 呼び出します。 機能または特定のバージョンが存在するかどうかを確認するには、 メソッドを IsPresent 呼び出し、このクラスで提供されている機能識別子を使用して検索する機能を指定します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET