Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsDefault

bool System.Xml.DataPointer.IsDefault
getpackage

Definition at line 202 of file DataPointer.cs.

203 {
204 get
205 {
206 RealFoliate();
207 if (_node != null && _column == null && _node.NodeType == XmlNodeType.Attribute)
208 {
209 return !((XmlAttribute)_node).Specified;
210 }
211 return false;
212 }
213 }
XmlNodeType NodeType
Definition XmlNode.cs:73