Exemple #1
0
 protected override GH_GetterResult Prompt_Singular(ref Types.Hu_Font value)
 {
     System.Drawing.Font Font = GH_FontPicker.ShowFontPickerWindow(GH_FontServer.Standard);
     if (Font == null)
     {
         return(GH_GetterResult.cancel);
     }
     value = new Hu_Font(Font);
     return(GH_GetterResult.success);
 }