Download ScriptingHost-Jint3.zip, last updated 31/08/2020 (148.60 KB)

Download
  • md5: b024e3fc7125b05e7ec5eb5e5330f838
  • sha1: ce3d14820a647e3eb4588bf606b97047464041e9
  • sha256: d68e1b14e0da47d405e8cda8439a07ff45dff6adcdd992397fa190293e76edf6
// Adding Scripting to .NET Applications
// https://www.cyotek.com/blog/adding-scripting-to-net-applications

// Copyright © 2020 Cyotek Ltd. All Rights Reserved.

// This work is licensed under the MIT License.
// See LICENSE.TXT for the full text

// Found this example useful?
// https://www.paypal.me/cyotek

namespace Cyotek.Demo.ScriptingHost
{
  internal static class Filters
  {
    #region Public Fields

    public const string AllFiles = "All Files (*.*)|*.*";

    public const string General = "All Supported Files (*.js; *.bmp; *.jpg; *.png)|*.js;*.bmp;*.jpg;*.png|" + Filters.ScriptFiles + "|" + Filters.Images + "|" + Filters.AllFiles;

    public const string Images = "All Supported Images (*.bmp; *.jpg; *.png)|*.bmp;*.jpg;*.png|Bitmaps (*.bmp)|*.bmp|Joint Photographic Experts Group (*.jpg)|*.jpg|Portable Network Graphics (*.png)|*.png";

    public const string ScriptFiles = "Script Files (*.js)|*.js";

    #endregion Public Fields
  }
}

Donate

Donate