CubePdf.Parameter.IsDocumentType C# (CSharp) Method

IsDocumentType() public static method

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