Example #1
0
 public LabelWidthToolCommand(CommandToolParser.LabelWidthCommandContext context)
 {
     if (context.LITERAL() == null)
     {
         return;
     }
     Width = ProcessNumber(context.LITERAL().GetText());
 }