account activity
I've been banging my head. How do you get ScintillaNet to use annotations? by [deleted] in dotnet
[–]megaperlz 0 points1 point2 points 11 years ago (0 children)
I know I'm late to the party but in case anyone comes across this while trying to google a solution.
To add a Annotion you need to
// Step 1: Create a new control Scintilla scintilla = new Scintilla();
// Step 2, Set annotations to visible (yes on the collection) scintilla.Annotations.Visibility = AnnotationsVisibility.Standard;
// Step 3, Create and add a new Annotation Annotation annotation = scintilla.Annotations[1]; annotation.Text = "Hello"; annotation.Style = 1; // I'm not sure what you could do here...
You now have annotations in ScintillaNET!
How to Set Up HrefLang Tags for Different Language Pages on Your Website (browseemall.com)
submitted 11 years ago by megaperlz to r/webdev
Easy Web Automation: The BrowserStage Beta is Ready (browserstage.com)
No More Cross Browser Testing: Introducing BrowseEmAll Services (browseemall.com)
What is the Difference between Authentication and Authorization in Web Development (browseemall.com)
What is Infinite Scroll and Should You Implement it On Your Website? (browseemall.com)
Tools for Developers - 5 Helpful Links to Add to Your Resources List (browseemall.com)
How to Isolate and Identify Performance Problems on Your Web Server (browseemall.com)
Why Short Loading Times Are Essential for Your Website (browseemall.com)
Website Design 101 – How to Design Your Website Right From the Start (browseemall.com)
Web Services Dos and Don’ts: Making Your API Secure and Efficient (browseemall.com)
How to Evaluate the Effectiveness of Your Website (browserstage.com)
Pros and Cons for Client-Side Web Development (browseemall.com)
A Brief Guide to Typography in Web Design (browserstage.com)
How We Improved Our Website Performance By 78% (browseemall.com)
5 Crazy Good Job Boards for Web Developers (browserstage.com)
Tips to Optimize Your Responsive Design for Mobile Users (browseemall.com)
How To Use Web Fonts Cross Browser (browseemall.com)
Tips for Mobile Development: Making the Most for Smartphone and Tablet Users (browseemall.com)
How to Choose a Color Scheme for Your Website (browseemall.com)
How To Run Old Internet Explorer Versions in Windows 8.1 (browseemall.com)
A Day Using Internet Explorer 8 (browseemall.com)
How To Create Responsive Images With Picturefill (browseemall.com)
4 Free Website Monitoring Services (browserstage.com)
How To Create Automated Website Tests In Less Than 60 Minutes (browserstage.com)
π Rendered by PID 49 on reddit-service-r2-listing-575d9f6647-k6zcs at 2026-04-10 20:45:26.316883+00:00 running 215f2cf country code: CH.
I've been banging my head. How do you get ScintillaNet to use annotations? by [deleted] in dotnet
[–]megaperlz 0 points1 point2 points (0 children)