C# Class Accord.Controls.WavechartBox

ファイルを表示 Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
Show ( Signal signal, int channel, string title = "Wavechart", bool nonBlocking = false ) : WavechartBox

Displays a Wavechart with the specified signal.

Show ( float array, String title, bool nonBlocking = false ) : WavechartBox

Displays a Wavechart with the specified signal.

WaitForClose ( ) : void

Blocks the caller until the form is closed.

Private Methods

Method Description
WavechartBox ( ) : System
show ( String title, bool hold ) : WavechartBox

Method Details

Show() public static method

Displays a Wavechart with the specified signal.
public static Show ( Signal signal, int channel, string title = "Wavechart", bool nonBlocking = false ) : WavechartBox
signal Signal The signal object to display.
channel int The channel to be displayed.
title string The title for the data window.
nonBlocking bool If set to true, the caller will continue /// executing while the form is shown on screen. If set to false, /// the caller will be blocked until the user closes the form. Default /// is false.
return WavechartBox

Show() public static method

Displays a Wavechart with the specified signal.
public static Show ( float array, String title, bool nonBlocking = false ) : WavechartBox
array float The signal to be displayed.
title String The title for the data window.
nonBlocking bool If set to true, the caller will continue /// executing while the form is shown on screen. If set to false, /// the caller will be blocked until the user closes the form. Default /// is false.
return WavechartBox

WaitForClose() public method

Blocks the caller until the form is closed.
public WaitForClose ( ) : void
return void