private void
Page_Load(object sender,
System.EventArgs e){
//set the message .. notice the use of
html tags.
Marquee1.Message = "Message set at
<b>Runtime<b>";
//change the scroll direction using
Marquee Direction
Marquee1.Direction = SilkWebware.Marquee.Direction.Down;
//change the backcolor to Red
Marquee1.BackColor = Color.Red;
}