ars_SetVUI(ctrl, vuiHash)

This function modifies an existing VUI. You must first populate the vuiHash before calling this routine.

vuiHash is an VUI Attributes hash.

On success
Returns 1
On failure
Returns 0

Example:

This example changes the owner of the view "TEST:View".
      ($v = ars_GetVUI($c,"Schema",$vuiId)) ||
	    die $ars_errstr;
      ars_SetVUI( $c, "Schema", $vuiId, {owner => "admin2"} ) || die $ars_errstr;
      

This function was introduced in version 1.90 of ARSperl

<-- Back to Table of Contents