Options オブジェクトは、Windows PowerShell ISE のさまざまな設定を表します。これは、Microsoft.PowerShell.Host.ISE.ISEOptions クラスのインスタンスです。
メソッド
RestoreDefaultTokenColors()
トークンの色を既定の値に戻します。
# Changes the color of the comments in the script to red and then restores it to its default value. $psISE.Options.TokenColors["Comment"]="red" $psISE.Options.RestoreDefaultTokenColors()
RestoreDefaults()
すべてのオプションの設定を既定の値に戻します。また、"今後、このメッセージを表示しない" というオプションを選択できる標準のチェック ボックスが表示される、さまざまな警告メッセージの動作をリセットします。
# Changes the background color in the Command Pane and then restores it to its default value. $psISE.Options.CommandPaneBackground = "orange" $psISE.Options.RestoreDefaults()
プロパティ
CommandPaneBackgroundColor
コマンド ペイン エディターの背景色を取得または設定するための読み取り/書き込みプロパティ。これは、System.Windows.Media.Color クラスのインスタンスです。
# Changes the background color of the Command Pane to orange. $psISE.Options.CommandPaneBackground = "orange"
CommandPaneUp
コマンド ペインが出力ペインの上に位置するかどうかを示すブール値を取得または設定するための読み取り/書き込みプロパティ。
# Moves the Command Pane to the top of the screen. $psISE.Options.CommandPaneUp = $true
DebugBackgroundColor
出力ペインに表示されるデバッグ テキストの背景色を取得または設定するための読み取り/書き込みプロパティ。これは、System.Windows.Media.Color クラスのインスタンスです。
# Changes the background color for the debug text that appears in the Output Pane to blue. $psISE.Options.DebugBackgroundColor ='#0000FF'
DebugForegroundColor
出力ペインに表示されるデバッグ テキストの前景色を取得または設定するための読み取り/書き込みプロパティ。これは、System.Windows.Media.Color クラスのインスタンスです。
# Changes the foreground color for the debug text that appears in the Output Pane to yellow. $psISE.Options.DebugForegroundColor =”yellow”
DefaultOptions
オプション設定の既定値を取得するための読み取り専用プロパティ。
# Displays the name of the default options. $psISE.Options.DefaultOptions
# Here is a typical listing of the default options: SelectedScriptPaneState : Right ShowToolBar : True TokenColors : {[Attribute, #FFADD8E6], [Command, #FF0000FF], [Com mandArgument, #FF8A2BE2], [CommandParameter, #FF000 080]...} DefaultOptions : Microsoft.PowerShell.Host.ISE.ISEOptions FontSize : 12 FontName : Lucida Console ErrorForegroundColor : #FF0000FF ErrorBackgroundColor : #00FFFFFF WarningForegroundColor : #FFFF8C00 WarningBackgroundColor : #00FFFFFF VerboseForegroundColor : #FF0000FF VerboseBackgroundColor : #00FFFFFF DebugForegroundColor : #FF0000FF DebugBackgroundColor : #00FFFFFF OutputPaneBackgroundColor : #FFF0F8FF OutputPaneTextBackgroundColor : #FFF0F8FF OutputPaneForegroundColor : #FF000000 CommandPaneBackgroundColor : #FFFFFFFF ScriptPaneBackgroundColor : #FFFFFFFF ShowWarningForDuplicateFiles : True ShowWarningBeforeSavingOnRun : True UseLocalHelp : True CommandPaneUp : False
ErrorBackgroundColor
出力ペインに表示されるエラー テキストの背景色を取得または設定するための読み取り/書き込みプロパティ。これは、System.Windows.Media.Color クラスのインスタンスです。
# Changes the background color for the error text that appears in the Output Pane to black. $psISE.Options.ErrorBackgroundColor="black"
ErrorForegroundColor
出力ペインに表示されるエラー テキストの前景色を取得または設定するための読み取り/書き込みプロパティ。これは、System.Windows.Media.Color クラスのインスタンスです。
# Changes the foreground color for the error text that appears in the Output Pane to green. $psISE.Options.ErrorForegroundColor =”green”
FontName
スクリプト ペイン、コマンド ペイン、および出力ペインで現在使用されているフォント名を取得または設定する読み取り/書き込みプロパティ。
# Changes the font used in all the panes. $psISE.Options.FontName = "courier new"
FontSize
スクリプト ペイン、コマンド ペイン、および出力ペインで使用されているフォント サイズ (整数) を取得または設定するための読み取り/書き込みプロパティ。値の有効範囲は (8, 32) です。
# Changes the font size in all the panes. $psISE.Options.FontSize = 20
OutputPaneBackgroundColor
出力ペイン自体の背景色を取得または設定するための読み取り/書き込みプロパティ。これは、System.Windows.Media.Color クラスのインスタンスです。
# Changes the background color of the Output Pane to gold. $psISE.Options.OutputPaneForegroundColor = "gold"
OutputPaneTextForegroundColor
出力ペインに表示されるテキストの前景色を変更するための読み取り/書き込みプロパティ。
# Changes the foreground color of the text in the Output Pane to blue. $psISE.Options.OutputPaneTextForegroundColor = "blue"
OutputPaneTextBackgroundColor
出力ペインに表示されるテキストの背景色を変更するための読み取り/書き込みプロパティ。
# Changes the background color of the Output Pane text to pink. $psISE.Options.OutputPaneTextBackgroundColor = "pink"
ScriptPaneBackgroundColor
ファイルの背景色を取得または設定するための読み取り/書き込みプロパティ。これは、System.Windows.Media.Color クラスのインスタンスです。
# Sets the color of the script pane background to yellow. $psISE.Options.ScriptPaneBackgroundColor = ”yellow”
ScriptPaneForegroundColor
スクリプト ペインの非スクリプト ファイルの前景色を取得または設定するための読み取り/書き込みプロパティ。スクリプト ファイルの前景色を設定するには、TokenColors プロパティを使用します。
# Sets the foreground to color of non-script files in the script pane to green. $psISE.Options.ScriptPaneBackgroundColor = ”green”
SelectedScriptPaneState
画面上のスクリプト ペインの位置を取得または設定するための読み取り/書き込みプロパティ。指定可能な値は "top"、"right"、および "Maximized" です。
# Moves the Script Pane to the top $psISE.Options.SelectedScriptPaneState = "Top" # Moves the Script Pane to the right. $psISE.Options.SelectedScriptPaneState = "Right" # Maximizes the Script Pane $psISE.Options.SelectedScriptPaneState = "Maximized"
ShowToolBar
ツール バーの表示または非表示を決定するための読み取り/書き込みブール値プロパティ。
# Show the tool bar. $psISe.Options.ShowToolBar = $true
ShowWarningBeforeSavingOnRun
スクリプトが実行前に自動的に保存されるときの警告メッセージを表示するかどうかを指定するブール値を、取得または設定するための読み取り/書き込みプロパティ。
# Sets the option to display a warning message # when an attempt is made to save a script before running it. $psISE.Options.ShowWarningBeforeSavingOnRun=$true
ShowWarningForDuplicateFiles
同じファイルが複数の PowerShell タブで開かれたときに警告メッセージが表示されるようにするブール値を、取得または設定するための読み取り/書き込みプロパティ。
# Set the ShowWarningForDuplicateFiles property to true. $psISE.Options.ShowWarningForDuplicateFiles = $true # The following message is displayed: “A copy of this file # is open in another PowerShell Tab. Changes made to this # file will affect all open copies.”
TokenColors
コマンド ペインおよびスクリプト ペイン用のトークンのタイプおよび色の名前/値ペアを格納するディクショナリ オブジェクトを取得するためのプロパティ。
# Sets the color of commands to green. $psISE.Options.TokenColors["Command"] = "green" # Sets the color of keywords to magenta. $psISE.Options.TokenColors["Keyword"] = "magenta"
UseLocalHelp
ローカル ヘルプまたはオンライン ヘルプを表示するかどうかを示すブール値を取得または設定するための読み取り/書き込みプロパティ。
# Sets the option for the online help to be displayed. $psISE.Options.LocalHelp=$false
VerboseBackgroundColor
出力ペインに表示される詳細テキストの背景色を取得または設定するための読み取り/書き込みプロパティ。これは、System.Windows.Media.Color オブジェクトです。
# Changes the background color for the verbose text that appears in the Output Pane to blue. $psISE.Options.VerboseBackgroundColor ='#0000FF'
VerboseForegroundColor
出力ペインに表示される詳細テキストの前景色を取得または設定するための読み取り/書き込みプロパティ。これは、System.Windows.Media.Color オブジェクトです。
# Changes the foreground color for the verbose text that appears in the Output Pane to yellow. $psISE.Options.VerboseForegroundColor =”yellow”
WarningBackgroundColor
出力ペインに表示される警告テキストの背景色を取得または設定するための読み取り/書き込みプロパティ。これは、System.Windows.Media.Color オブジェクトです。
# Changes the background color for the warning text that appears in the Output Pane to blue. $psISE.Options.WarningBackgroundColor ='#0000FF'
WarningForegroundColor
出力ペインに表示される警告テキストの前景色を取得または設定するための読み取り/書き込みプロパティ。これは、System.Windows.Media.Color オブジェクトです。
# Changes the foreground color for the warning text that appears in the Output Pane to yellow. $psISE.Options.WarningForegroundColor =”yellow”
関連項目