Exemple #1
0
 public RTFTreeNode(RTFObjectType type, string key, bool hasParam, int param)
 {
     this.c          = new RTFNodeCollection();
     base.ObjectType = type;
     base.Key        = key;
     base.HasParam   = hasParam;
     base.Param      = param;
 }
Exemple #2
0
 public RTFTreeNode(RTFObjectType type) : this(type, "", false, 0)
 {
 }