AODL.Document.Content.Fields.Placeholder.Placeholder C# (CSharp) Method

Placeholder() public method

public Placeholder ( IDocument document, PlaceholderType placeholderType ) : System
document IDocument
placeholderType PlaceholderType
return System
        public Placeholder(IDocument document, PlaceholderType placeholderType)
        {
            _document = document;
            _node = document.CreateNode("placeholder", "text");
            PlaceholderType = placeholderType;
        }

Same methods

Placeholder::Placeholder ( IDocument document, PlaceholderType placeholderType, string description ) : System
Placeholder::Placeholder ( IDocument document, XmlNode node ) : System
Placeholder