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

Property Value

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