Inheritance: HpglItem
コード例 #1
0
ファイル: Textificator.cs プロジェクト: spustlik/plotr
 protected override void VisitLabel(Label item)
 {
     Console.WriteLine(" [{0}]", item.Text);
     result.AddRange(Font6.DrawString(item.Text));
 }
コード例 #2
0
ファイル: Optimizer.cs プロジェクト: spustlik/plotr
 protected override void VisitLabel(Label item)
 {
     throw new NotImplementedException("Optimalization of LB is not implemented. You must textify it, or disable optimalization.");
 }
コード例 #3
0
ファイル: Absolutizer.cs プロジェクト: spustlik/plotr
 protected override void VisitLabel(Label item)
 {
     result.Add(item);
 }
コード例 #4
0
ファイル: HpglVisitor.cs プロジェクト: spustlik/plotr
 protected override void VisitLabel(Label item)
 {
     Unprocessed(item);
 }
コード例 #5
0
ファイル: HpglProcessor.cs プロジェクト: spustlik/plotr
 protected override void VisitLabel(Label item)
 {
     //TODO:
 }
コード例 #6
0
ファイル: Hpgl2Bmp.cs プロジェクト: spustlik/plotr
 protected override void VisitLabel(Label item)
 {
     throw new NotImplementedException("Drawing label to bitmap is not implemented. You must textify it.");
 }