C# Class TESVSnip.UI.Services.Settings

Afficher le fichier Open project: figment/tesvsnip

Méthodes publiques

Méthode Description
GetBool ( string name ) : bool

Retrieve a boolean value

GetString ( string name ) : string

Retrieve a string value

GetStringArray ( string name ) : string[]

Retrieve a string array

GetWindowPosition ( string window, Form f ) : void

Retrieve the window position

Init ( ) : void

Init class Settings

RemoveString ( string name ) : void

Remove string parameters

SetBool ( string name, bool value ) : void

Set a boolean value in a parameter

SetString ( string name, string value ) : void

Set a string value in a parameter

SetStringArray ( string name, string items ) : void

Set a string array in a parameter

SetWindowPosition ( string window, Form f ) : void

Set windows position on screen

Private Methods

Méthode Description
Settings ( ) : System.Drawing

Constructor

Method Details

GetBool() public static méthode

Retrieve a boolean value
public static GetBool ( string name ) : bool
name string Parameter name
Résultat bool

GetString() public static méthode

Retrieve a string value
public static GetString ( string name ) : string
name string Parameter name
Résultat string

GetStringArray() public static méthode

Retrieve a string array
public static GetStringArray ( string name ) : string[]
name string Parameter name
Résultat string[]

GetWindowPosition() public static méthode

Retrieve the window position
public static GetWindowPosition ( string window, Form f ) : void
window string Window name
f System.Windows.Forms.Form Windows form reference
Résultat void

Init() public static méthode

Init class Settings
public static Init ( ) : void
Résultat void

RemoveString() public static méthode

Remove string parameters
public static RemoveString ( string name ) : void
name string Parameter name
Résultat void

SetBool() public static méthode

Set a boolean value in a parameter
public static SetBool ( string name, bool value ) : void
name string Parameter name
value bool Boolean value
Résultat void

SetString() public static méthode

Set a string value in a parameter
public static SetString ( string name, string value ) : void
name string Parameter name
value string String value
Résultat void

SetStringArray() public static méthode

Set a string array in a parameter
public static SetStringArray ( string name, string items ) : void
name string Parameter name
items string String array
Résultat void

SetWindowPosition() public static méthode

Set windows position on screen
public static SetWindowPosition ( string window, Form f ) : void
window string Windows name
f System.Windows.Forms.Form Windows form reference
Résultat void