Click or drag to resize

IAssetNeedsEdit Property


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.6.492
Syntax
bool NeedsEdit { get; set; }

Property Value

Boolean
Example
Example of checking for NeedsEdit in custom hook:
C#
if(contentItem.NeedsEdit){
    //Additional Actions
}
See Also