IContentItemWorkflowSuperInWorkflowTransition Property
|
Gets and sets whether the content item is being accessed within the bounds of a workflow transition.
Namespace: Ingeniux.CMSAssembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.492
Syntaxbool 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
Boolean
Example
Example checking InWorkflowTransition in a custom hook:
var contentItem = session.Site.Asset("a/100") as IContentItemWorkflowSuper;
if(contentItem.InWorkflowTransition){
}
See Also