abiruban wrote: > Reply this ques ...........pls iam waitinf for u reply answer is must be C# > lan only.... I don't like the tone of your mail: it "must" be "C# language only". Can't we use Java as the lingua franca and adapt it to C#? If not, you shouldn't expect an answer with that attitude.
Also, your question: "How to add disable radiobutton" should probably be rephrased as: "How to add a disabled radiobutton". A. If the radiobutton is NOT to be used an interactive field (no real form, just the appearance of a radio button), you have these options: 1. Look for a font that has a glyph that looks like a radiobutton and use the corresponding character. For instance, there's a circle glyph in the font Zapfdingbats. 2. If you can't find a font that has such a symbol, you could create a shape yourself using PDF syntax and wrap that in a PdfTemplate and/or (vector data) Image. 3. If that's too hard, you can consider using a (raster data) Image that looks like a radio button. B. If the radiobutton is part of an interactive form (you must be able to change the state programmatically, but it must be disabled for the end user), you have to add the radiobutton the same way you're adding any other radiobutton, BUT you have to set the properties to ReadOnly. ------------------------------------------------------------------------------ Create and publish websites with WebMatrix Use the most popular FREE web apps or write code yourself; WebMatrix provides all the features you need to develop and publish your website. http://p.sf.net/sfu/ms-webmatrix-sf _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions iText(R) is a registered trademark of 1T3XT BVBA. Many questions posted to this list can (and will) be answered with a reference to the iText book: http://www.itextpdf.com/book/ Please check the keywords list before you ask for examples: http://itextpdf.com/themes/keywords.php
