WikiFunctions.Parse.HideText.HideText C# (CSharp) Method

HideText() public method

Hides Unformatted text (nowiki, pre, math, html comments, timelines), source tags
public HideText ( bool hideExternalLinks, bool leaveMetaHeadings, bool hideImages ) : System
hideExternalLinks bool Whether external links should be hidden too
leaveMetaHeadings bool Whether to not hide section headings
hideImages bool Whether images should be hidden too
return System
        public HideText(bool hideExternalLinks, bool leaveMetaHeadings, bool hideImages)
        {
            HideExternalLinks = hideExternalLinks;
            LeaveMetaHeadings = leaveMetaHeadings;
            HideImages = hideImages;
        }

Same methods

HideText::HideText ( ) : System