Skip to content

DropZone

Summary

Represents the DropZone control that can be used as a file(s) input.

Signature

1
public class DropZone : ControlBase

Namespace

cAlgo.API

Properties

Child

Summary

Gets or sets the drop zone child object.

Signature

1
public ControlBase Child {get; set;}

Return Value

ControlBase

FilterExtensions

Summary

Gets or sets the file extensions filter.

Signature

1
public string[] FilterExtensions {get; set;}

Return Value

string[]

IsDirectoryDropAllowed

Summary

Gets or sets whether user can drop directories or not.

Signature

1
public bool IsDirectoryDropAllowed {get; set;}

Return Value

bool

Events

Dropped

Summary

Occurs when files are dropped.

Signature

1
public event Action<DroppedEventArgs> Dropped;