iTextSharp.text.rtf.parser.properties.RtfProperty.SetModified C# (CSharp) Method

SetModified() public method

public SetModified ( String propertyName, bool modified ) : void
propertyName String
modified bool
return void
        public void SetModified(String propertyName, bool modified) {
            if (propertyName.StartsWith(CHARACTER)) {
                this.SetModifiedCharacter(modified);
            } else {
                if (propertyName.StartsWith(PARAGRAPH)) {
                    this.SetModifiedParagraph(modified);
                } else {
                    if (propertyName.StartsWith(SECTION)) {
                        this.SetModifiedSection(modified);
                    } else {
                        if (propertyName.StartsWith(DOCUMENT)) {
                            this.SetModifiedDocument(modified);
                        }
                    }
                }
            }
        }
        /**