ITileUIContextCanExecuteCommand(ITile, TileCommandEventType, Boolean) - метод
Выполняет обработчик события [Tessa.UI.Tiles.ITileUIContext.CommandExecuting]
и возвращает признак того, что выполнение команды было разрешено.
Пространство имён: Tessa.UI.TilesСборка: Tessa.UI (в Tessa.UI.dll) Версия: 3.6.0.22
bool CanExecuteCommand(
ITile tile,
TileCommandEventType eventType = TileCommandEventType.Default,
bool canCancel = true
)
Function CanExecuteCommand (
tile As ITile,
Optional eventType As TileCommandEventType = TileCommandEventType.Default,
Optional canCancel As Boolean = true
) As Boolean
bool CanExecuteCommand(
ITile^ tile,
TileCommandEventType eventType = TileCommandEventType::Default,
bool canCancel = true
)
abstract CanExecuteCommand :
tile : ITile *
?eventType : TileCommandEventType *
?canCancel : bool
(* Defaults:
let _eventType = defaultArg eventType TileCommandEventType.Default
let _canCancel = defaultArg canCancel true
*)
-> bool
- tile ITile
- Плитка, для которой требуется проверить возможность выполнения команды.
- eventType TileCommandEventType (Optional)
- Тип события, в результате которого выполняется команда плитки.
- canCancel Boolean (Optional)
- Признак того, что выполнение команды может быть отменено.
Booleantrue, если выполнение команды было разрешено;
false в противном случае.