Show / Hide Table of Contents

    Class Pdf

    A class representing a Pdf document

    Inheritance
    System.Object
    Pdf
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ToString()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: DesignData.SDS2.Detail
    Assembly: DesignData.SDS2.Detail.dll
    Syntax
    public sealed class Pdf

    Constructors

    Pdf()

    Declaration
    public Pdf()

    Properties

    Bytes

    A copy of the raw byte array representing the pdf.

    Declaration
    public byte[] Bytes { get; set; }
    Property Value
    Type Description
    System.Byte[]
    Examples
                Pdf pdf = new Pdf();
                pdf.Bytes = System.IO.File.ReadAllBytes("document.pdf");

    Methods

    Finalize()

    Declaration
    protected void Finalize()
    Back to top