Вставка элемента управления содержимым флажка в C# и .NET


     Флажок предоставляет UI интерфейс, представляющий двоичное состояние: выбрано или сброшено.

Полный код

using System;
using System.Text;
using SautinSoft.Document;
using SautinSoft.Document.CustomMarkups;
using SautinSoft.Document.Drawing;
using System.IO;

namespace Example
{
    class Program
    {
        static void Main(string[] args)
        {
            // Get your free 30-day key here:   
            // https://sautinsoft.com/start-for-free/

            InsertCheckBox();
        }
        /// <summary>
        /// Inserting a Check box content control.
        /// </summary>
        /// <remarks>
        /// Details: https://www.sautinsoft.com/products/document/help/net/developer-guide/content-controls-insert-checkbox-net-csharp-vb.php
        /// </remarks>

        static void InsertCheckBox()
        {
            DocumentCore dc = new DocumentCore();

            InlineContentControl checkbox = new InlineContentControl(dc, ContentControlType.CheckBox);

            // Set the checkbox properties.
            checkbox.Properties.Title = "Click me";
            checkbox.Properties.Checked = true;
            checkbox.Properties.LockDeleting = true;
            checkbox.Properties.CharacterFormat.Size = 24;

            // Override default checkbox appearance.
            checkbox.Properties.CheckedSymbol.FontName = "Courier New";
            checkbox.Properties.CheckedSymbol.Character = 'X';
            checkbox.Properties.UncheckedSymbol.FontName = "Courier New";
            checkbox.Properties.UncheckedSymbol.Character = 'O';

            dc.Sections.Add(new Section(dc, new Paragraph(dc, new Run(dc, "Click me => ", 
                new CharacterFormat() {Size=24, FontColor=new Color("#3399FF") }), checkbox)));

            // Save our document into DOCX format.
            string resultPath = @"result.docx";
            dc.Save(resultPath, new DocxSaveOptions());

            // Open the result for demonstration purposes.
            System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(resultPath) { UseShellExecute = true });
        }
    }
}

Download

Imports System
Imports System.Text
Imports SautinSoft.Document
Imports SautinSoft.Document.CustomMarkups
Imports SautinSoft.Document.Drawing
Imports System.IO

Namespace Example
	Friend Class Program
		Shared Sub Main(ByVal args() As String)
			InsertCheckBox()
		End Sub
                ''' Get your free 30-day key here:   
                ''' https://sautinsoft.com/start-for-free/
		''' <summary>
		''' Inserting a Check box content control.
		''' </summary>
		''' <remarks>
		''' Details: https://www.sautinsoft.com/products/document/help/net/developer-guide/content-controls-insert-checkbox-net-csharp-vb.php
		''' </remarks>

		Private Shared Sub InsertCheckBox()
			Dim dc As New DocumentCore()

			Dim checkbox As New InlineContentControl(dc, ContentControlType.CheckBox)

			' Set the checkbox properties.
			checkbox.Properties.Title = "Click me"
			checkbox.Properties.Checked = True
			checkbox.Properties.LockDeleting = True
			checkbox.Properties.CharacterFormat.Size = 24

			' Override default checkbox appearance.
			checkbox.Properties.CheckedSymbol.FontName = "Courier New"
			checkbox.Properties.CheckedSymbol.Character = "X"c
			checkbox.Properties.UncheckedSymbol.FontName = "Courier New"
			checkbox.Properties.UncheckedSymbol.Character = "O"c

			dc.Sections.Add(New Section(dc, New Paragraph(dc, New Run(dc, "Click me => ", New CharacterFormat() With {
				.Size = 24,
				.FontColor = New Color("#3399FF")
			}), checkbox)))

			' Save our document into DOCX format.
			Dim resultPath As String = "result.docx"
			dc.Save(resultPath, New DocxSaveOptions())

			' Open the result for demonstration purposes.
			System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(resultPath) With {.UseShellExecute = True})
		End Sub
	End Class
End Namespace

Download


Если вам нужен пример кода или у вас есть вопрос: напишите нам по адресу [email protected] или спросите в онлайн-чате (правый нижний угол этой страницы) или используйте форму ниже:



Вопросы и предложения всегда приветствуются!

Мы разрабатываем компоненты .Net с 2002 года. Мы знаем форматы PDF, DOCX, RTF, HTML, XLSX и Images. Если вам нужна помощь в создании, изменении или преобразовании документов в различных форматах, мы можем вам помочь. Мы напишем для вас любой пример кода абсолютно бесплатно.