Navigation
  • SEARCH HERE
  • SOLUTIONS
    • Information Security Solutions
      • Enterprise Application Security Solutions in Asia
      • Network & Infrastructure Security Solutions
      • Zero Trust Security
      • Security Information and Event Management
      • Remote Monitoring & Management (RMM)
      • File Integrity Management
      • Systems Administration Tools
      • Data Loss Prevention
      • Data / Password Recovery
      • IT Management Solution Offering | Distributor in Asia
      • Identity and Access Management Solution Offering | Distributor in Asia
      • Employee Activity Monitoring (EAM)
      • Digital Forensic Investigation
    • Software Development Solutions
      • Integrated Development Environments
      • Development Components
        • UI Tools
        • Networking Components
        • Office Components
        • Barcode Components
        • Communication Components
      • Imaging Solutions
      • Software Localization
      • Release Automation & Management
      • eLearning Authoring Solutions
      • Charting Solutions
      • PDF Solutions
      • Reporting Solutions
      • Testing & QA
      • Text Retrieval / Enterprise Search
      • Database
  • Services
    • Live Solution Walkthroughs
    • Implementation Services
    • Best Practices Consulting
    • Pre-Sales and Post-Sales Services
  • What's New
    • Our Event
    • Our Blogs
    • Special Offers
  • About
    • About LOGON Software Asia
    • Our Partnership
  • Publishers - Join our network
  • Resellers - Expand your portfolio
  • Procurement Managers
Site logo
  • Solutions
    • Information Security Solutions
      • Identity and Access Management
        • Privileged Access Management (PAM)
        • Multi-Factor Authentication (MFA)
        • Identification Verification (IV)
        • Self-Service Password Reset (SSPR)
      • Network & Infrastructure Security
        • DDoS Mitigation and Protection
        • Digital Forensic Investigation
        • Malware Detection & Analysis
        • Network Monitoring Software
        • Email Security
        • Log Monitoring
      • Endpoint & Device Security
        • Patch Management
        • Remote Monitoring & Management (RMM)
        • Employee Activity Monitoring (EAM)
        • Mobile Device Management (MDM)
      • IT Management
        • IT Service Management
        • IT Asset Management
        • Software Asset Management
        • Hardware Asset Management
        • Software License Management
        • Systems Administration Tools
      • Application Security
        • Development Security | Shift Left AppSec | SAST, SCA, IAST
        • Runtime Protection Solutions | DAST, RASP, WAF, Container Security
        • Strategic Management Solutions | ASPM, MAST, VAPT
      • Data Security
        • Data / Password Recovery
        • File Integrity Management
        • Data Loss Prevention
      • Cloud Security
        • Cloud Security Posture Management
        • Cloud Work Protection
      • External Attack Surface Management
        • Cyber Threat Intelligence
        • Third Party Risk Management
      • Security Operations & Incident Management
        • Security Information and Event Management
        • Security Orchestration, Automation and Response (SOAR)
      • Zero Trust Security
    • Software Development Solutions
      • Integrated Development Environments
      • Imaging Solutions
      • UI Tools
      • Charting Solutions
      • Developer Tools
      • Database
      • Networking Components
      • Office Components
      • Barcode Components
      • Release Automation & Management
      • Software Localization
      • Communication Components
      • Automated Testing
      • eLearning Authoring Solutions
      • Reporting Solutions
      • Text Retrieval / Enterprise Search
      • Testing & QA
  • Services
        • Live Walkthrough Sessions

          Experience the full feature of our key solutions through live platform

          View All Sessions >
        • Implementation Services
        • Pre-Sales and Post-Sales Services
        • Best Practices Consulting
  • Partners
    • Our Partners
    • Partner with LOGON Today!
      • Vendors - Join Our Network
      • Resellers - Expand Your Portfolio
      • Procurement Managers
  • Resources
        • ABOUT US

        • About Us
        • Our Locations
        • Careers@LOGON - We are hiring !
        • DISCOVER

        • Our BlogsNEW BLOGS
        • Our EventsJOIN UPCOMING EVENTS
        • LOGON to CyberSecurity PodcastNEW EPISODES
        • GET HELP

        • Contact Us
        • Help Desk
        • Request a Demo
        • Request a Quote
        • COMPLIANCE

        • 🇭🇰 Hong Kong PDPO
        • 🇮🇳 India DPDP Act
        • 🇸🇬 Singapore PDPA
        • 🇹🇭 Thailand PDPA
  • More results...

FOXIT PDF SDK FOR UWP

PDF SDK for UWP focuses on helping developers integrate PDF technology easily into their apps. Enjoy the native performance and behaviors of developing a UWP app with complete source code control and a built in PDF viewer. Even developers with limited PDF knowledge can quickly build a professional, customized viewer with only a few lines of code. Our Software Development Kit has all the text processing functionality you need for your next application.

DEVELOPING WITH PDF SDK FOR UWP

Build UWP apps that can view, create and edit PDF documents with ease. Our UI Extension provides a fully customizable user interface with built-in tools for text mark-up, drawing, form filling, full-text searching and so much more. Using our Core API your developers can code with our PDF libraries quickly and proficiently, harnessing Foxit’s powerful PDF SDK technology to give your customers a great product. Created with UWP’s fluent design guidelines in mind, our PDF SDK is the perfect companion for any UWP mobile app.

FEATURES

PDF VIEWING

Our core API provides for high-fidelity rendering of PDF documents with optimized performance for desktop and mobile platforms.
Find out more…

DIGITAL SIGNATURES

Use ink signatures to let customers sign documents in their digital devices. No need to print a file to sign again!
Find out more…

PDF FORMS

Give users the ability to fill out digital forms on the go with their device of choice. Apps have never been more productive!
Find out more…

RIGHTS MANAGEMENT

Our PDF SDK can generate secure PDFs with native encryption/decryption or integrate with customized DRM or IRM security systems. Our technology integrates with Microsoft RMS.
Find out more…

PDF ANNOTATIONS

Our PDF SDK provides full support for annotating and marking up content with an extensive range of functions for creating, editing or importing/exporting annotations.
Find out more…

FULL-TEXT SEARCH

Fast full-text search for any PDF document, language, or encoding type. The SQLite-based full-text search delivers near-instant results, even for repositories on any digital device.
Find out more…

Full Feature List

INTRODUCING FOXIT PDF SDK 7.1

We now support iOS 13 Dark Mode and have added a number of UI level improvements, support to play and flatten sound annotations, functionality to manage trusted certificates for signatures and a synchronized update for Xamarin, Cordova, React Native, Kotlin and Flutter!

Foxit PDF SDK 7.1 for Windows, Mac & Linux comes with support for PDF compliance conversion to PDF versions 1.3-1.7, new performance-enhancing APIs for PDF merging, video/audio annotations, improvements to XFA form fields and much more.

Find Out More

FOXIT PDF SDK FOR WINDOWS IN ACTION

  • Edit Bookmarks in C++
  • Render PDF to Bitmap in C++

Edit Bookmarks in C++

//Edit the bookmarks title, color, style... then save them to a new pdf.
void FunctionDemo::MainPage::outline_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
{
	StorageFolder^ documentFolder = Windows::Storage::KnownFolders::DocumentsLibrary;
	create_task(documentFolder->GetFileAsync("Outline.pdf")).then([=](StorageFile^ file) {
		try
		{
			m_doc = ref new FSPDFDoc(file,0);
			if (!m_doc)
			{
				return;
			}
			FSErrorCode code = m_doc->Load("");
			if (code != FSErrorCode::e_errSuccess) {
				return;
			}

			FSBookmark^ root = m_doc->GetFirstBookmark();
			this->setProperties(root);
		}
		catch (Platform::Exception^ e)
		{
			OutputDebugString(e->Message->Data());
		}
	}).then([=]()
	{
		return documentFolder->CreateFileAsync("Output_Outline.pdf", CreationCollisionOption::ReplaceExisting);
	}).then([=](StorageFile^ file)
	{
		try
		{
			m_doc->SaveAs(file, 0);
			this->showMesseageDialog("", "The output file is saved to:" + file->Path);
		}
		catch (Platform::Exception^ e)
		{
		}
	});
}


void FunctionDemo::MainPage::setProperties(FSBookmark^ bookmark)
{
	FSBookmark^ bm = nullptr;
	for (bm = bookmark->GetFirstChild(); bm != nullptr; bm = bm->GetNextSibling())
	{
		String^ title = bm->GetTitle();
		bm->SetTitle(title + "_renamed");
		bm->SetColor(0x0000ffff);
		bm->SetStyle((int)FSBookmarkStyle::e_bookmarkStyleBold);

		FSBookmark^ child = bm->GetFirstChild();
		if (child)
		{
			this->setProperties(bm);
		}
	}
}

void FunctionDemo::MainPage::showMesseageDialog(Platform::String^ title, Platform::String^ content)
{
	auto messageDialog = ref new Windows::UI::Popups::MessageDialog(content, title);
	messageDialog->Commands->Append(ref new Windows::UI::Popups::UICommand("OK", nullptr, PropertyValue::CreateInt32(0)));
	messageDialog->DefaultCommandIndex = 0;
	messageDialog->ShowAsync();
}

Render PDF to Bitmap in C++

//Edit the bookmarks title, color, style... then save them to a new pdf.
void FunctionDemo::MainPage::outline_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e)
{
	StorageFolder^ documentFolder = Windows::Storage::KnownFolders::DocumentsLibrary;
	create_task(documentFolder->GetFileAsync("Outline.pdf")).then([=](StorageFile^ file) {
		try
		{
			m_doc = ref new FSPDFDoc(file,0);
			if (!m_doc)
			{
				return;
			}
			FSErrorCode code = m_doc->Load("");
			if (code != FSErrorCode::e_errSuccess) {
				return;
			}

			FSBookmark^ root = m_doc->GetFirstBookmark();
			this->setProperties(root);
		}
		catch (Platform::Exception^ e)
		{
			OutputDebugString(e->Message->Data());
		}
	}).then([=]()
	{
		return documentFolder->CreateFileAsync("Output_Outline.pdf", CreationCollisionOption::ReplaceExisting);
	}).then([=](StorageFile^ file)
	{
		try
		{
			m_doc->SaveAs(file, 0);
			this->showMesseageDialog("", "The output file is saved to:" + file->Path);
		}
		catch (Platform::Exception^ e)
		{
		}
	});
}


void FunctionDemo::MainPage::setProperties(FSBookmark^ bookmark)
{
	FSBookmark^ bm = nullptr;
	for (bm = bookmark->GetFirstChild(); bm != nullptr; bm = bm->GetNextSibling())
	{
		String^ title = bm->GetTitle();
		bm->SetTitle(title + "_renamed");
		bm->SetColor(0x0000ffff);
		bm->SetStyle((int)FSBookmarkStyle::e_bookmarkStyleBold);

		FSBookmark^ child = bm->GetFirstChild();
		if (child)
		{
			this->setProperties(bm);
		}
	}
}

void FunctionDemo::MainPage::showMesseageDialog(Platform::String^ title, Platform::String^ content)
{
	auto messageDialog = ref new Windows::UI::Popups::MessageDialog(content, title);
	messageDialog->Commands->Append(ref new Windows::UI::Popups::UICommand("OK", nullptr, PropertyValue::CreateInt32(0)));
	messageDialog->DefaultCommandIndex = 0;
	messageDialog->ShowAsync();
}

About Foxit

Other

RESOURCES

DEVELOPER DOCS
CASE STUDIES
KNOWLEDGE BASE
STARTUP PROGRAM

Request Quote
Evaluation

LOGON is a pan-asian company operating in China, Hong Kong (HK), India, Singapore, Malaysia, Indonesia, Vietnam, Philippines and Thailand. LOGON has local dedicated trained product specialists in Hong Kong, Guangzhou, Kuala Lumpur, Mumbai and Bangalore. LOGON acts both as value added reseller and sole distributor for award winning software solutions. Customers can buy new licenses, purchase upgrades and renewals from any of our local offices. Contact us for first line support during evaluations, PoCs. We offer best practices consulting services and classroom & online training. Check our site for latest offers, special discounts, bundle deals, etc..

Privacy Policy Company Overview

COMPANY

Our Location Career with LOGON Our Partners

SERVICES

Training Services Implementation Services Pre-Sales and Post-Sales Services Best Practices Consulting

GET IN TOUCH

Phone:
Hong Kong: +852 2512 8491
India: +91 70220 22744 / +91 63668 26133
Email: [email protected] ©2025 LOGON International Ltd. All rights reserved
logon logo WHITE

Search engine

Use this form to find things you need on this site

More results...

Fill in the form below
  • This field is for validation purposes and should be left unchanged.
  • This field is hidden when viewing the form
  • This field is hidden when viewing the form

Watch On-demand Webinar

  • This field is for validation purposes and should be left unchanged.

Get Your Free UserLock Trial

  • This field is for validation purposes and should be left unchanged.

Download Your Free Trial 10-Day Trial Today

  • Downloading and evaluating Smart Package Studio is quick and easy
  • Includes a short introductory guide that suggests smart features to try
  • Access the full functionality of Smart Package Studio during the trial
  • This field is for validation purposes and should be left unchanged.

Request for Priority Support with our support team

  • This field is for validation purposes and should be left unchanged.
  • Drop files here or
    Max. file size: 30 MB.

    Get Free Assessment of your Web Asset

    Request a free non-intrusive security assessment of your website. Get a report with an overview of client-side security risks.

    • This field is for validation purposes and should be left unchanged.
    • This field is hidden when viewing the form

    Recommend a Topic

    • This field is for validation purposes and should be left unchanged.

    Partner with Us on the next episode

    • This field is for validation purposes and should be left unchanged.

    Request Quote for Lansweeper

    Oops! We could not locate your form.

    Watch On-demand Webinar

    • This field is for validation purposes and should be left unchanged.
    Start PreCrime Network for Free

    Oops! We could not locate your form.

    Book a Free Demo Today

    Get Your Free Trial

    Oops! We could not locate your form.

    Get Your Free Trial
    • This field is for validation purposes and should be left unchanged.
    • This field is hidden when viewing the form
    • This field is hidden when viewing the form
    Request for Training Quote

    Oops! We could not locate your form.

    Request for Training Quote

    Oops! We could not locate your form.

    Request for Training Quote

    Oops! We could not locate your form.

    Request for Training Quote
    • This field is for validation purposes and should be left unchanged.
    • Please enter a number from 1 to 20.
    • This field is hidden when viewing the form
    Request for Training Quote
    • This field is for validation purposes and should be left unchanged.
    • Please enter a number from 1 to 20.
    • This field is hidden when viewing the form
    Request for Training Quote
    • Please enter a number from 1 to 20.
    • DD slash MM slash YYYY
    Request for Training Quote
    • This field is for validation purposes and should be left unchanged.
    • Please enter a number from 1 to 20.
    • DD slash MM slash YYYY
    Request for Training Quote
    • This field is for validation purposes and should be left unchanged.
    • Please enter a number from 1 to 20.
    • DD slash MM slash YYYY
    Request for Training Quote
    • This field is for validation purposes and should be left unchanged.
    • Please enter a number from 1 to 20.
    • This field is hidden when viewing the form