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

Methods

RaiseDropped

Signature

1
internal void RaiseDropped(IList<string> filePaths)

Parameters

Name Type Description
filePaths IList

Return Value

void

Accept

Signature

1
internal void Accept(IChartControlVisitor visitor)

Parameters

Name Type Description
visitor IChartControlVisitor

Return Value

void

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;