DocumentSystem.TextDocument.SaveAllProperties C# (CSharp) Method

SaveAllProperties() public method

public SaveAllProperties ( object>.IList output ) : void
output object>.IList
return void
        public override void SaveAllProperties(IList<KeyValuePair<string, object>> output)
        {
            output.Add(new KeyValuePair<string, object>("charset", this.charset));
            base.SaveAllProperties(output);
        }