MCPcopy Create free account
hub / github.com/angular/components / disabled

Method disabled

src/cdk/drag-drop/drag-ref.ts:346–348  ·  view source on GitHub ↗

Whether starting to drag this element is disabled.

()

Source from the content-addressed store, hash-verified

344
345 /** Whether starting to drag this element is disabled. */
346 get disabled(): boolean {
347 return this._disabled || !!(this._dropContainer && this._dropContainer.disabled);
348 }
349 set disabled(value: boolean) {
350 if (value !== this._disabled) {
351 this._disabled = value;

Callers

nothing calls this directly

Tested by

no test coverage detected