DocumentSystem.PDFDocument.LoadProperty C# (CSharp) Method

LoadProperty() public method

public LoadProperty ( string key, string value ) : void
key string
value string
return void
        public override void LoadProperty(string key, string value)
        {
            if (key == "pages")
            {
                this.pages = ulong.Parse(value);
            }
            else
            {
                base.LoadProperty(key, value);
            }
        }