Skip to content

AspBlock

Summary

Represents an active symbol panel block.

Signature

1
public abstract interface AspBlock

Namespace

cAlgo.API

Properties

Id

Summary

Returns unique ID of the current block.

Signature

1
public abstract string Id {get;}

Return Value

string

Title

Summary

Returns title of the current block.

Signature

1
public abstract string Title {get;}

Return Value

string

Child

Summary

Get / set content of current block.

Signature

1
public abstract ControlBase Child {get; set;}

Return Value

ControlBase

Height

Summary

Get / set height of current block (default is 200).

Signature

1
public abstract double Height {get; set;}

Return Value

double

Index

Summary

Get / set index of current block (Must be greater than zero).

Signature

1
public abstract int Index {get; set;}

Return Value

int

IsExpanded

Summary

Get / set expanded state of current block.

Signature

1
public abstract bool IsExpanded {get; set;}

Return Value

bool

IsAttached

Summary

Get / set block attached/ detached state.

Signature

1
public abstract bool IsAttached {get; set;}

Return Value

bool

IsDetachable

Summary

Get / set block detachability, if True user can attach or detach the block.

Signature

1
public abstract bool IsDetachable {get; set;}

Return Value

bool

DetachedWindow

Summary

Returns detached window properties.

Signature

1
public abstract DetachedWindow DetachedWindow {get;}

Return Value

DetachedWindow

Events

Attached

Summary

Occurs when block attached.

Signature

1
public abstract event Action<AspBlockAttachedEventArgs> Attached;

Detached

Summary

Occurs when block is detached.

Signature

1
public abstract event Action<AspBlockDetachedEventArgs> Detached;

Updated

Summary

Occurs when block is updated.

Signature

1
public abstract event Action<AspBlockUpdatedEventArgs> Updated;