CubePdf.Parameter.IsDocumentType C# (CSharp) 메소드

IsDocumentType() 공개 정적인 메소드

ファイルの種類が「ドキュメント」であるかどうかを判別します。
public static IsDocumentType ( FileTypes id ) : bool
id FileTypes
리턴 bool
        public static bool IsDocumentType(FileTypes id)
        {
            return !IsImageType(id);
        }