C# Class AtlusScriptLibrary.MessageScriptLanguage.SelectionDialog

Represents a selection window in a message script.
Inheritance: IDialog
Datei anzeigen Open project: TGEnigma/Atlus-Script-Tools Class Usage Examples

Private Properties

Property Type Description
IEnumerable IEnumerator

Public Methods

Method Description
GetEnumerator ( ) : IEnumerator
SelectionDialog ( string identifier, SelectionDialogPattern pattern = SelectionDialogPattern.Top ) : System.Collections

Constructs a new selection dialog with just an identifier.

SelectionDialog ( string identifier, SelectionDialogPattern pattern, List pages ) : System.Collections

Constructs a new selection dialog with just an identifier.

Private Methods

Method Description
IEnumerable ( ) : IEnumerator

Method Details

GetEnumerator() public method

public GetEnumerator ( ) : IEnumerator
return IEnumerator

SelectionDialog() public method

Constructs a new selection dialog with just an identifier.
public SelectionDialog ( string identifier, SelectionDialogPattern pattern = SelectionDialogPattern.Top ) : System.Collections
identifier string The text identifier of the window.
pattern SelectionDialogPattern
return System.Collections

SelectionDialog() public method

Constructs a new selection dialog with just an identifier.
public SelectionDialog ( string identifier, SelectionDialogPattern pattern, List pages ) : System.Collections
identifier string The text identifier of the dialog.
pattern SelectionDialogPattern
pages List The list of lines in the dialog.
return System.Collections