Are RecordSeries' treated the same way as Record Folders in terms of cutoff? Looking through the SDK documentation I can't find the IsEligibleForCutoff property for the RecordSeries, RecordSeriesProperties, or RecordSeriesInfo classes. If I wanted to check if a record series was eligible for cutoff, and if so cutoff said series, how would I do that? Is it not possible at that kind of level?
I tried the IsRecordFolder property and then tried creating a RFProperty for the series, because technically the series is a folder, but it didn't work within my program.
EDIT: Added some sample code so I'm less ambiguous.
if (recser.IsRecordFolder) { finfo = Folder.GetFolderInfo(cur_entry, dasesh); RecordFolderProperties rfprop = finfo.GetRFProperties(); if (rfprop.IsEligibleForCutoff) { //do stuff}