C# Class LayoutFarm.UI.UIVisitor

Mostrar archivo Open project: prepare/HTML-Renderer Class Usage Examples

Public Methods

Method Description
Attribute ( string name, double value ) : void
Attribute ( string name, int value ) : void
Attribute ( string name, string value ) : void
BeginElement ( UIElement ui, string uiname ) : void
Comment ( string content ) : void
EndElement ( ) : void
TextNode ( string content ) : void

Method Details

Attribute() public abstract method

public abstract Attribute ( string name, double value ) : void
name string
value double
return void

Attribute() public abstract method

public abstract Attribute ( string name, int value ) : void
name string
value int
return void

Attribute() public abstract method

public abstract Attribute ( string name, string value ) : void
name string
value string
return void

BeginElement() public abstract method

public abstract BeginElement ( UIElement ui, string uiname ) : void
ui UIElement
uiname string
return void

Comment() public abstract method

public abstract Comment ( string content ) : void
content string
return void

EndElement() public abstract method

public abstract EndElement ( ) : void
return void

TextNode() public abstract method

public abstract TextNode ( string content ) : void
content string
return void