Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/mm/ada/Doc/
Upload File :
Current File : /var/www/html/mmishra/mm/ada/Doc/interface_acroinfo.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
	<title>VersyPHP Documentation</title>
</head>
<body style="color: rgb(8, 38, 176); font-size: 20px; table-layout: fixed; margin-left: 35px; width: 872px; margin-top: 26px; height: 249px;" text="">
	<table style="width: 878px; height: 54px;" align="center" cellpadding="0" cellspacing="0">
  	<tbody>
    	<tr>
      	<td align="left" width="30%">
		<img src="logo.gif" align="middle" border="0" height="50" width="85">
	</td>
      	<td style="width: 45%;" align="right">
		<h1 style="font-size: 10pt;"> VESRYPDF.PHP DOCUMENATION&nbsp; </h1>
	</td>
    	</tr>
  	</tbody>
	</table>
	<h2 style="color: rgb(71, 38, 125); font-family: serif; font-size: 12pt;">VersyPDF Acrobat Forms Information Manipulation Interface</h2>

<h3 style="color: rgb(71, 38, 125); font-family: serif; font-size: 11pt;">FUNCTIONS:</h3>

<table style="color : black; font-family : serif; font-size : 10pt; width : 100%;" border="1">
<b>pdfacro_get_count</b>
   		<tr>
        <td width="15%"><b>Description :</b></td>
   		<td>
        Gets number of Acro Objects in Document.
        </td>
        </tr>
   		<tr><td width="15%"><b>Parameters :</b></td>
        <td><b>$Doc </b>- [in] Source Document.
        </td>
        </tr>
   		<tr> <td width="15%"><b>Returns:</b></td>
        <td>
        Number of Acro Objects in Document, integer number.
        </td>
        </tr>
        <tr><td width="15%"><b>Use :</b></td>
        <td style="color : brown;">
        $ObjectCount = pdfacro_get_count( $Doc );
        </td>
        </tr>
</table><br>

<table style="color : black; font-family : serif; font-size : 10pt; width : 100%;" border="1">
<b>pdfacro_get_name_by_index</b>
   		<tr>
        <td width="15%"><b>Description :</b></td>
   		<td>
        Gets Full name of acro form object in document according to Index.
        </td>
        </tr>
   		<tr><td width="15%"><b>Parameters :</b></td>
        <td><b>$Doc </b>- [in] Source Document.
        <br><b>$Index </b>- [in] Index as from 0. Object number in AcroForm.
		<br><b>$IsUnicode </b>- [out] True if Return string is in Unicode.
		<br><b>$Length </b>- [out] Length of return string in bytes.
        </td>
        </tr>
   		<tr> <td width="15%"><b>Returns:</b></td>
        <td>
        Text string ( where partial names are separated by point ).
        </td>
        </tr>
        <tr><td width="15%"><b>Use :</b></td>
        <td style="color : brown;">
        $Name = pdfacro_get_name_by_index( $Doc, $Index, &$IsUnicode, &$Length );
        </td>
        </tr>
</table><br>

<table style="color : black; font-family : serif; font-size : 10pt; width : 100%;" border="1">
<b>pdfacro_get_value_by_index</b>
   		<tr>
        <td width="15%"><b>Description :</b></td>
   		<td>
        Gets Value of Acro Form Object in Document according to Index.
        </td>
        </tr>
   		<tr><td width="15%"><b>Parameters :</b></td>
        <td><b>$Doc   </b>- [in] Source Document.
        <br><b>$Index </b>- [in] Index as from 0. Object number in AcroForm.
		<br><b>$Length</b>- [out] Length of returned value's string
        </td>
        </tr>
   		<tr> <td width="15%"><b>Returns:</b></td>
        <td>
        Text string
        </td>
        </tr>
        <tr><td width="15%"><b>Use :</b></td>
        <td style="color : brown;">
        $Value = pdfacro_get_value_by_index( $Doc, $Index, &$Length );
        </td>
        </tr>
</table><br>

<table style="color : black; font-family : serif; font-size : 10pt; width : 100%;" border="1">
<b>pdfacro_get_type_by_index</b>
   		<tr>
        <td width="15%"><b>Description :</b></td>
   		<td>
        Gets Type of Acro Form Object in Document according to Index.
        </td>
        </tr>
   		<tr><td width="15%"><b>Parameters :</b></td>
        <td><b>$Doc </b>- [in] Source Document.
        <br><b>$Index </b>- [in] Index as from 0. Object number in AcroForm.
        </td>
        </tr>
   		<tr> <td width="15%"><b>Returns:</b></td>
        <td>
        Typed value, for example PushButton, ComboBox, etc.
        </td>
        </tr>
        <tr><td width="15%"><b>Use :</b></td>
        <td style="color : brown;">
        $Type = pdfacro_get_type_by_index( $Doc, $Index );
        </td>
</table><br>

<table style="color : black; font-family : serif; font-size : 10pt; width : 100%;" border="1">
<b>pdfacro_get_obj_by_index</b>
   		<tr>
        <td width="15%"><b>Description :</b></td>
   		<td>
        Gets Cos Object of Acro Form Object in Document according to Index.
        </td>
        </tr>
   		<tr><td width="15%"><b>Parameters :</b></td>
        <td><b>$Doc </b>- [in] Source Document.
        <br><b>$Index </b>- [in] Index as from 0. Object number in AcroForm.
        </td>
        </tr>
   		<tr> <td width="15%"><b>Returns:</b></td>
        <td>
        Cos Object Handle.
        </td>
        </tr>
        <tr><td width="15%"><b>Use :</b></td>
        <td style="color : brown;">
        $Object = pdfacro_get_obj_by_index( $Doc, $Index );
        </td>
</table><br>

<table style="color : black; font-family : serif; font-size : 10pt; width : 100%;" border="1">
<b>pdfacro_get_flags_by_index</b>
   		<tr>
        <td width="15%"><b>Description :</b></td>
   		<td>
        Gets Flags of Acro Form Object in Document according to Index in document.
        </td>
        </tr>
   		<tr><td width="15%"><b>Parameters :</b></td>
        <td><b>$Doc </b>- [in] Source Document.
        <br><b>$Index </b>- [in] Index as from 0. Object number in AcroForm.
        </td>
        </tr>
   		<tr> <td width="15%"><b>Returns:</b></td>
        <td>
        Integer, Flags of AcroForm Object.
        </td>
        </tr>
        <tr><td width="15%"><b>Use :</b></td>
        <td style="color : brown;">
        $Flags = pdfacro_get_flags_by_index( $Doc, $Index );
        </td>
        </tr>
</table><br>

<table style="color : black; font-family : serif; font-size : 10pt; width : 100%;" border="1">
<b>pdfacro_get_index_by_name</b>
   		<tr>
        <td width="15%"><b>Description :</b></td>
   		<td>
        Gets Index of Acro Form Object in Document according to its Full Name.
        </td>
        </tr>
   		<tr><td width="15%"><b>Parameters :</b></td>
        <td><b>$Doc 			</b>- [in] Source Document.
        <br><b>$Name 			</b>- [in] Full Name of Acro Object, where partial names are separated by point, for example 'button.2'
		<br><b>$CheckUnicode	</b>- [in] True if $Name string is in Unicode.
        </td>
        </tr>
   		<tr> <td width="15%"><b>Returns:</b></td>
        <td>
        Numeric Index value according to Name in document.
        </td>
        </tr>
        <tr><td width="15%"><b>Use :</b></td>
        <td style="color : brown;">
        $Value = pdfacro_get_index_by_name( $Doc, $Name, $CheckUnicode );
        </td>
        </tr>
</table><br>

<table style="color : black; font-family : serif; font-size : 10pt; width : 100%;" border="1">
<b>pdfacro_set_value_by_index</b>
   		<tr>
        <td width="15%"><b>Description :</b></td>
   		<td>
        Set Value of AcroForm Object in Document according to its index.
        </td>
        </tr>
   		<tr><td width="15%"><b>Parameters :</b></td>
        <td><b>$Doc </b>- 	  [in] Source Document.
        <br><b>$Index </b>-  [in] Index as from 0. Object number in AcroForm.
		<br><b>$NewValue </b>[in] New Value of AcroForm Object.
        </td>
        </tr>
   		<tr> <td width="15%"><b>Returns:</b></td>
        <td>
        None.
        </td>
        </tr>
        <tr><td width="15%"><b>Use :</b></td>
        <td style="color : brown;">
        pdfacro_set_value_by_index( $Doc, $Index, $NewValue );
        </td>
        </tr>
</table><br>

<table style="color : black; font-family : serif; font-size : 10pt; width : 100%;" border="1">
<b>pdfacro_get_option_count_by_index</b>
   		<tr>
        <td width="15%"><b>Description :</b></td>
   		<td>
        Gets number of options for AcroForm Object in Document according to its index.
        </td>
        </tr>
   		<tr><td width="15%"><b>Parameters :</b></td>
        <td><b>$Doc </b>- [in] Source Document.
        <br><b>$Index </b>- [in] Index as from 0. Object number in AcroForm.
        </td>
        </tr>
   		<tr> <td width="15%"><b>Returns:</b></td>
        <td>
        Integer, Number of options in document.
        </td>
        </tr>
        <tr><td width="15%"><b>Use :</b></td>
        <td style="color : brown;">
        $Count = pdfacro_get_option_count_by_index( $Doc, $Index );
        </td>
        </tr>
</table><br>

<table style="color : black; font-family : serif; font-size : 10pt; width : 100%;" border="1">
<b>pdfacro_get_option_value_by_index</b>
   		<tr>
        <td width="15%"><b>Description :</b></td>
   		<td>
        Gets Option Value from AcroForm Object ( ListBox, ComboBox, RadioButton ).
        </td>
        </tr>
   		<tr><td width="15%"><b>Parameters :</b></td>
        <td><b>$Doc </b>- [in] Source Document.
        <br><b>$Index </b>- [in] Index as from 0. Object number in AcroForm.
		<br><b>$OptionIndex </b>- [in] Index of option current Acroform Object.
		<br><b>$OptionLength</b>- [out] Length of Option's string in bytes.
        </td>
        </tr>
   		<tr> <td width="15%"><b>Returns:</b></td>
        <td>
        Text string with option value.
        </td>
        </tr>
        <tr><td width="15%"><b>Use :</b></td>
        <td style="color : brown;">
        $Name = pdfacro_get_option_value_by_index( $Doc, $Index, $OptionIndex, &$OptionLength );
        </td>
        </tr>
</table><br>

</body>
</html>