Menu Editor - Link open in new window

Hi using - Using V2026.4

In the menu editor I have added a menu item and a link to a document in the URL Field, can I make the link open the document in a new window - I tried using html but it do not like that

Kind Regards

John Berman

function MenuItem_Adding(MenuItem $item): void
{
    if($item->Id == 12345) { 
        $item->Target = "_blank";
    }
}

thanks - solved