max payload ?

Thank you very much all of you for you're time and you're answers .

I have read from an example this command:
// enable dynamic payloads
radio.enableDynamicPayloads();

This still limit the max size at 32 ?

If i want to send for example
unsigned int CodeToRF[100];

is any command, i can use it to call it for example 4 times and send the first 25 then, the next 25 e.t.c
like :
unsigned int temp[25];
unsigned int CodeToRF[100];

command to copy (temp,CodeToRF ,0,25);
send(temp) to nrf24l01

command to copy (temp,CodeToRF ,25,50);
send(temp)to nrf24l01

command to copy (temp,CodeToRF ,50,75);
send(temp) to nrf24l01

command to copy (temp,CodeToRF ,75,100);
send(temp)to nrf24l01

Thank you in advance.

Best Regards,
Tasos