InstalledFlashVersion Property

Syntax

C#

public static Version InstalledFlashVersion;

Description

The InstalledFlashVersion property returns the version of the installed Flash Player.
You can use this property to verify if the required version of Flash is installed before running your application.


Example (C#)

if (f_in_box__lib.Global.InstalledFlashVersion.MajorPart < 8)
{
    MessageBox.Show(
        "The application needs Flash 8 or higher\nCurrent flash version is: " +
        f_in_box__lib.Global.InstalledFlashVersion.ToString()
    );
    return;
}

This property is useful for validating Flash Player compatibility and ensuring your application runs on supported versions.