API:FMX.Memo.Style.TEditActionStack

From RAD Studio API Documentation
Jump to: navigation, search

System.Generics.Collections.TStackSystem.Generics.Collections.TEnumerableSystem.TObjectTEditActionStack

Delphi

TEditActionStack = class(TStack<TEditAction>)

C++

class PASCALIMPLEMENTATION TEditActionStack : public System::Generics::Collections::TStack__1<TEditAction>

Properties

Type Visibility Source Unit Parent
class public
FMX.Memo.Style.pas
FMX.Memo.Style.hpp
FMX.Memo.Style FMX.Memo.Style

Description

Last in, first out stack.

FMX.Memo.Style.TEditActionStack inherits from System.Generics.Collections.TStack. All content below this line refers to System.Generics.Collections.TStack.

Last in, first out stack.

TStack represents a last in, first out stack of the same type. It is of arbitrary size, expanding as needed. You can push nil on the stack.

When the stack changes, an OnNotify event is generated.

Count contains the number of stack entries.

The class TObjectStack inherits from TStack and provides an automatic mechanism for freeing objects removed from stacks.

See Also

Code Examples