DocumentSystem.TextDocument.LoadProperty C# (CSharp) Méthode

LoadProperty() public méthode

public LoadProperty ( string key, string value ) : void
key string
value string
Résultat void
        public override void LoadProperty(string key, string value)
        {
            if (key == "charset")
            {
                this.charset = value;
            }
            else
            {
                base.LoadProperty(key, value);
            }
        }