VXml VXML_AddinstEducativas VXml
Agrega informacion del complemento iedu al ultimo concepto agregado

Namespace: VXml®
Assembly: VXML_Doc (in VXML_Doc.exe) Version: 1.0.0.0 (1.0.0.0)
Sintáxis

public static void VXML_AddinstEducativas(
	int hXml,
	string CURP,
	string autRVOE,
	string nivelEducativo,
	string nombreAlumno,
	string rfcPago
)
Examples

private void GeneraDocto(String version)
{
    // Creamos un comprobante 
    int hXml = VXML_New(version);

    // Llenado del documento 

    // Datos del emisor 

    // Datos del receptor 

    // Conceptos 
    // Aqui va un bucle de conceptos, aqui vamos a poner un for para agregar 5 conceptos 
    for ( int i = 0; i < 5; i++)
    {
        VXML_AddConcepto( hXml, i.ToString(), "PZAS", "Descripcion", "1000", ( i * 1000 ).ToString(), "" );

        // Agregamos informacion de iedu al concepto 3 
        if ( i == 3 )
            VXML_AddinstEducativas( hXMl, "BEML920313HCMLNS09", "123456", "Primaria", "Luis Raúl Bello Mena", "LILO781103U73" );

    }

    // Procesamiento del documento 
    // .... 

    // Lectura de resultados 
    // .... 

    // Liberacion de memoria
    VXML_Free(hXml);
}
Veáse También