C# Class a.spritestudio.editor.xml.NodeReader

ノードのデータ取り出し
ファイルを表示 Open project: cfm-art/SpriteStudioPlayerForUGUI Class Usage Examples

Public Methods

Method Description
AtBoolean ( ) : bool

boolで取得

AtBoolean ( string tag ) : bool

子供からboolで取得

AtBooleans ( char separator ) : bool[]

boolの配列で取得

AtBooleans ( string tag, char separator ) : bool[]

boolの配列で取得

AtFloat ( ) : float

floatで取得

AtFloat ( string tag ) : float

子供からfloatで取得

AtFloats ( char separator ) : float[]

floatの配列で取得

AtFloats ( string tag, char separator ) : float[]

子供からfloatの配列で取得

AtInteger ( ) : int

intで取得

AtInteger ( string tag ) : int

子供からintで取得

AtIntegers ( char separator ) : int[]

intの配列で取得

AtIntegers ( string tag, char separator ) : int[]

子供からintの配列で取得

AtText ( ) : string

文字列で取得

AtText ( string tag ) : string

文字列で取得

AtTexts ( char separator ) : string[]

文字列の配列で取得

AtTexts ( string tag, char separator ) : string[]

文字列の配列で取得

Attribute ( string tag ) : AttributeReader

属性の取得

Child ( string tag ) : NodeReader

子供を1つ取得

ChildOrNull ( string tag ) : NodeReader

子供を1つ取得。無ければnull

Children ( string tag ) : NodeListReader

子供を全て取得

IsTrue ( string v ) : bool

文字列がtrue相当か判定

Next ( ) : NodeReader

同階層の次のノード

NodeReader ( XmlNode node ) : System.Xml

findFirst ( XmlDocument xml, string tag ) : NodeReader

ノードの検索

Method Details

AtBoolean() public method

boolで取得
public AtBoolean ( ) : bool
return bool

AtBoolean() public method

子供からboolで取得
public AtBoolean ( string tag ) : bool
tag string
return bool

AtBooleans() public method

boolの配列で取得
public AtBooleans ( char separator ) : bool[]
separator char
return bool[]

AtBooleans() public method

boolの配列で取得
public AtBooleans ( string tag, char separator ) : bool[]
tag string
separator char
return bool[]

AtFloat() public method

floatで取得
public AtFloat ( ) : float
return float

AtFloat() public method

子供からfloatで取得
public AtFloat ( string tag ) : float
tag string
return float

AtFloats() public method

floatの配列で取得
public AtFloats ( char separator ) : float[]
separator char
return float[]

AtFloats() public method

子供からfloatの配列で取得
public AtFloats ( string tag, char separator ) : float[]
tag string
separator char
return float[]

AtInteger() public method

intで取得
public AtInteger ( ) : int
return int

AtInteger() public method

子供からintで取得
public AtInteger ( string tag ) : int
tag string
return int

AtIntegers() public method

intの配列で取得
public AtIntegers ( char separator ) : int[]
separator char
return int[]

AtIntegers() public method

子供からintの配列で取得
public AtIntegers ( string tag, char separator ) : int[]
tag string
separator char
return int[]

AtText() public method

文字列で取得
public AtText ( ) : string
return string

AtText() public method

文字列で取得
public AtText ( string tag ) : string
tag string
return string

AtTexts() public method

文字列の配列で取得
public AtTexts ( char separator ) : string[]
separator char
return string[]

AtTexts() public method

文字列の配列で取得
public AtTexts ( string tag, char separator ) : string[]
tag string
separator char
return string[]

Attribute() public method

属性の取得
public Attribute ( string tag ) : AttributeReader
tag string
return AttributeReader

Child() public method

子供を1つ取得
public Child ( string tag ) : NodeReader
tag string
return NodeReader

ChildOrNull() public method

子供を1つ取得。無ければnull
public ChildOrNull ( string tag ) : NodeReader
tag string
return NodeReader

Children() public method

子供を全て取得
public Children ( string tag ) : NodeListReader
tag string
return NodeListReader

IsTrue() public static method

文字列がtrue相当か判定
public static IsTrue ( string v ) : bool
v string
return bool

Next() public method

同階層の次のノード
public Next ( ) : NodeReader
return NodeReader

NodeReader() public method

public NodeReader ( XmlNode node ) : System.Xml
node System.Xml.XmlNode
return System.Xml

findFirst() public static method

ノードの検索
public static findFirst ( XmlDocument xml, string tag ) : NodeReader
xml System.Xml.XmlDocument
tag string
return NodeReader