form_checkbox: Example code of Early Access iText

简介:
using  System;
using  iTextSharp.text;
using  iTextSharp.text.pdf;
using  System.IO;
public   class  form_checkbox
{
    
    
    [STAThread]
    
public   static   void   Main( string [] args)
    {
        Document document 
=   new  Document(PageSize.A4,  50 50 50 50 );
        
try
        {
            
//  creation of the different writers
            PdfWriter writer  =  PdfWriter.GetInstance(document,  new  FileStream( @" e:\java\form_checkbox.Pdf " , FileMode.Create));
            
            document.Open();
            PdfContentByte cb 
=  writer.DirectContent;
            cb.MoveTo(
0 0 );
            PdfFormField field 
=  PdfFormField.CreateCheckBox(writer);
            PdfAppearance tpOff 
=  cb.CreateAppearance( 20 20 );
            PdfAppearance tpOn 
=  cb.CreateAppearance( 20 20 );
            tpOff.Rectangle(
1 1 18 18 );
            tpOff.Stroke();
            
            tpOn.SetRGBColorFill(
255 128 128 );
            tpOn.Rectangle(
1 1 18 18 );
            tpOn.FillStroke();
            tpOn.MoveTo(
1 1 );
            tpOn.LineTo(
19 19 );
            tpOn.MoveTo(
1 19 );
            tpOn.LineTo(
19 1 );
            tpOn.Stroke();
            
            field.SetWidget(
new  Rectangle( 100 700 120 720 ), PdfAnnotation.HIGHLIGHT_INVERT);
            field.FieldName
= ( " Urgent " );
            field.ValueAsName
= ( " Off " );
            field.AppearanceState
= ( " Off " );
            field.SetAppearance(PdfAnnotation.APPEARANCE_NORMAL, 
" Off " , tpOff);
            field.SetAppearance(PdfAnnotation.APPEARANCE_NORMAL, 
" On " , tpOn);
            writer.AddAnnotation(field);
            document.Close();
            System.Console.Out.WriteLine(
" FIM. " );
        }
        
catch  (System.Exception de)
        {
            System.Console.Error.WriteLine(de.Message);
        }
    }
}
 
本文转 RubyPdf 的中文博客博客园博客,原文链接: http://www.cnblogs.com/hardrock/archive/2006/07/21/456283.html,如需转载请自行联系原作者
 
相关文章
|
6月前
使用Form报错提示If ngModel is used within a form tag, either the name attribute must be set or the form
使用Form报错提示If ngModel is used within a form tag, either the name attribute must be set or the form
|
JavaScript 前端开发
sendData to ABAP backend via multiple form content type
Created by Jerry Wang, last modified on Aug 20, 2014
107 0
sendData to ABAP backend via multiple form content type
A small tip to explore how to call a method of a control
Created by Jerry Wang, last modified on Mar 20, 2015
130 0
A small tip to explore how to call a method of a control
|
XML 数据格式
SAP Form print tool
Sent: Thursday, October 30, 2008 8:05 PM
SAP Form print tool
|
Android开发 iOS开发
where is os type and version determined for a ui5 html
Created by Jerry Wang, last modified on Jun 27, 2015
where is os type and version determined for a ui5 html
Cannot find source code based button in SE24 - modification assistant
Cannot find source code based button in SE24 - modification assistant
162 0