1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
<refentry id="vc_method">
<refmeta>
<refentrytitle>method</refentrytitle>
<refmiscinfo>vspx_control</refmiscinfo>
</refmeta>
<refnamediv>
<refname>method</refname>
<refpurpose>Page method - a user defined member of page class.</refpurpose>
</refnamediv>
<refsynopsisdiv>
<funcsynopsis id="vc_syn_method">
<funcprototype id="vc_proto_method">
<funcdef>
<<function>method</function> <attribute>
<parameter>name</parameter> (required) </attribute>
<attribute>
<parameter>returns</parameter> (optional) </attribute>
<attribute>
<parameter>arglist</parameter> (optional) </attribute>
/></funcdef>
</funcprototype>
</funcsynopsis>
</refsynopsisdiv>
<refsect1 id="vc_desc_method">
<title>Description</title>
<para>This creates a custom method of the page class.</para>
</refsect1>
<refsect1 id="vc_attrs_method">
<title>Attributes</title>
<formalpara>
<title>name = <link linkend="vc_type_SqlName">SqlName</link>
</title>
<para>The name of method to be created</para>
</formalpara>
<formalpara>
<title>returns = <link linkend="vc_type_SqlName">SqlName</link>
</title>
<para>Optional return datatype type</para>
</formalpara>
<formalpara>
<title>arglist</title>
<para>comma-separated list of arguments. For example : "in arg1 varchar, out arg1 integer ..."</para>
</formalpara>
</refsect1>
</refentry>
|