CSJ2K.j2k.ModuleSpec.isCompSpecified C# (CSharp) Метод

isCompSpecified() публичный Метод

Whether or not specifications have been entered for the given component.
public isCompSpecified ( int c ) : bool
c int Index of the component /// ///
Результат bool
        public virtual bool isCompSpecified(int c)
        {
            if (compDef == null || compDef[c] == null)
            {
                return false;
            }
            else
            {
                return true;
            }
        }