Prevent / block scrolling of ion-content while drag and drop

Is there a way to set the scrollY / scrollX properties of ion-content dynamically so I can block scrolling while dragging elements?

I figured it out using @ViewChild:

    @ViewChild(IonContent, {static: false}) content : IonContent;

and

this.content.scrollY = false