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

ノードのデータ取り出し
Afficher le fichier Open project: cfm-art/SpriteStudioPlayerForUGUI Class Usage Examples

Méthodes publiques

Méthode 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 méthode

boolで取得
public AtBoolean ( ) : bool
Résultat bool

AtBoolean() public méthode

子供からboolで取得
public AtBoolean ( string tag ) : bool
tag string
Résultat bool

AtBooleans() public méthode

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

AtBooleans() public méthode

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

AtFloat() public méthode

floatで取得
public AtFloat ( ) : float
Résultat float

AtFloat() public méthode

子供からfloatで取得
public AtFloat ( string tag ) : float
tag string
Résultat float

AtFloats() public méthode

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

AtFloats() public méthode

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

AtInteger() public méthode

intで取得
public AtInteger ( ) : int
Résultat int

AtInteger() public méthode

子供からintで取得
public AtInteger ( string tag ) : int
tag string
Résultat int

AtIntegers() public méthode

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

AtIntegers() public méthode

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

AtText() public méthode

文字列で取得
public AtText ( ) : string
Résultat string

AtText() public méthode

文字列で取得
public AtText ( string tag ) : string
tag string
Résultat string

AtTexts() public méthode

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

AtTexts() public méthode

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

Attribute() public méthode

属性の取得
public Attribute ( string tag ) : AttributeReader
tag string
Résultat AttributeReader

Child() public méthode

子供を1つ取得
public Child ( string tag ) : NodeReader
tag string
Résultat NodeReader

ChildOrNull() public méthode

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

Children() public méthode

子供を全て取得
public Children ( string tag ) : NodeListReader
tag string
Résultat NodeListReader

IsTrue() public static méthode

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

Next() public méthode

同階層の次のノード
public Next ( ) : NodeReader
Résultat NodeReader

NodeReader() public méthode

public NodeReader ( XmlNode node ) : System.Xml
node System.Xml.XmlNode
Résultat System.Xml

findFirst() public static méthode

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