IContentItemWorkflowSuperInWorkflowTransition Property
|
Gets and sets whether the content item is being accessed within the bounds of a workflow transition.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax bool InWorkflowTransition { get; set; }
Property InWorkflowTransition As Boolean
Get
Set
property bool InWorkflowTransition {
bool get ();
void set (bool value);
}
abstract InWorkflowTransition : bool with get, set
Property Value
Type:
BooleanExamples
Example checking InWorkflowTransition in a custom hook:
var contentItem = session.Site.Asset("a/100") as IContentItemWorkflowSuper;
if(contentItem.InWorkflowTransition){
}
See Also