Setting the Number of Spaces per Indentation : toString « XML « Flash / Flex / ActionScript






Setting the Number of Spaces per Indentation

 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){


        var example:XML = <stooges>
                             <moe /><curly><larry>
            </larry>
                                   </curly>
                   </stooges>;
        
        XML.prettyIndent = 0;
        trace(example);
        
        XML.prettyIndent = 8;
        trace(example);

    }
  }
}

        








Related examples in the same category

1.If the XML object in question contains only a single node only the text value of the node will be returned
2.The toXMLString() method always return the full XML tag and all values contained within an element.
3.Printing Pretty
4.Difference between toString and toXMLString
5.Converting an XML Element to a String
6.Converting an Attribute to a String