(FontDef Def, IList<FontDef.CharDef> SelectedChars)
| 13 | public partial class FontEditor_FromText : Form |
| 14 | { |
| 15 | public static DialogResult OpenDialog(FontDef Def, IList<FontDef.CharDef> SelectedChars) |
| 16 | { |
| 17 | FontEditor_FromText tForm = new FontEditor_FromText(Def, SelectedChars); |
| 18 | return tForm.ShowDialog(); |
| 19 | } |
| 20 | |
| 21 | FontDef _Def; |
| 22 | IList<FontDef.CharDef> _SelectedChars; |
nothing calls this directly
no outgoing calls
no test coverage detected