Checks whether the asset is flagged as needing edits.
Newly uploaded images are flagged as needing edits until they are checked in or removed from queue.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.3.169
Syntax bool NeedsEdit { get; set; }
Property NeedsEdit As Boolean
Get
Set
property bool NeedsEdit {
bool get ();
void set (bool value);
}
abstract NeedsEdit : bool with get, set
Property Value
Type:
BooleanExamples
Example of checking for NeedsEdit in custom hook:
if(contentItem.NeedsEdit){
}
See Also