ActiveReports3 Request technical support
Item Property
See Also  Example


Returns a reference to a Style object in the collection.

Overload List

OverloadDescription
Item(Int32)Gets the StyleSheet object at the specified indexed location in the StyleSheetCollection.  
Item(String)Gets the StyleSheet object with the specified name in the StyleSheetCollection.  

Example

C#Copy Code
Private void rptDataDynamics_ReportStart(object sender, System.EventArgs eArgs)
{
   
this.StyleSheet.Add("MyStyle");
   
this.StyleSheet["MyStyle"].Alignment = TextAlignment.Center;
   
this.StyleSheet["MyStyle"].BackColor = System.Drawing.Color.White;
   
this.StyleSheet["MyStyle"].FontBold = True;
   
this.StyleSheet["MyStyle"].FontItalic = False;
   
this.StyleSheet["MyStyle"].FontName = "Arial";
   
this.StyleSheet["MyStyle"].FontSize = null;
   
this.StyleSheet["MyStyle"].FontStrikeThrough = False;
   
this.StyleSheet["MyStyle"].FontUnderline = False;
   
this.StyleSheet["MyStyle"].ForeColor = System.Drawing.Color.YellowGreen;
   Console.WriteLine(
this.StyleSheet["MyStyle"].Name.ToString());
   Console.WriteLine(
this.StyleSheet["MyStyle"].Value.ToString());
   
this.StyleSheet["MyStyle"].VerticalAlignment = VerticalTextAlignment.Middle;

   Label1.ClassName =
"MyStyle";

   If (
this.StyleSheet.Count > 10)
   {
       
this.StyleSheet.Remove("MyStyle");
   }
}
Visual BasicCopy Code
Private Sub rptDD_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
   Me.StyleSheet.Add("MyStyle")
   Me.StyleSheet("MyStyle").Alignment = TextAlignment.Center
   Me.StyleSheet("MyStyle").BackColor = System.Drawing.Color.White
   Me.StyleSheet("MyStyle").FontBold = True
   Me.StyleSheet("MyStyle").FontItalic = False
   Me.StyleSheet("MyStyle").FontName = "Arial"
   Me.StyleSheet("MyStyle").FontSize = Nothing
   Me.StyleSheet("MyStyle").FontStrikeThrough = False
   Me.StyleSheet("MyStyle").FontUnderline = False
   Me.StyleSheet("MyStyle").ForeColor = System.Drawing.Color.YellowGreen
   Console.WriteLine(Me.StyleSheet("MyStyle").Name.ToString())
   Console.WriteLine(Me.StyleSheet("MyStyle").Value.ToString())
   Me.StyleSheet("MyStyle").VerticalAlignment = VerticalTextAlignment.Middle

   Label1.ClassName = "MyStyle"

   If Me.StyleSheet.Count > 10 Then
       Me.StyleSheet.Remove("MyStyle")
   End If

End Sub

See Also