コード例 #1
0
        static void Main(string[] args)
        {
            var htmlDoc = new HtmlDocument();
            var anchor  = new AnchorNode();
            var header  = new HeadingNode();

            htmlDoc.Add(anchor);
            htmlDoc.Add(header);
            htmlDoc.Execute(new HighlightOperation());
            htmlDoc.Execute(new PlainTextOperation());
            Console.ReadKey();
        }
コード例 #2
0
 public void Apply(AnchorNode anchor)
 {
     Console.WriteLine("PlainTextOperation Anchor");
 }
コード例 #3
0
 public void Apply(AnchorNode anchor)
 {
     Console.WriteLine("Highlight Anchor");
 }
コード例 #4
0
 public void Apply(AnchorNode anchor)
 {
     Console.WriteLine("Extract plain text from anchor");
 }
コード例 #5
0
 public void Apply(AnchorNode anchor)
 {
     Console.WriteLine("text-anchor");
 }
コード例 #6
0
 public void apply(AnchorNode anchor)
 {
     Console.WriteLine("Highlighting Anchor Node.");
 }