See Also

Label Class  | Label Members

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

Angle Property

Gets or sets the angle (slope) of the text within the control area. 

[Visual Basic]
Public Property Angle As Integer
[C#]
public int Angle {get; set;}

Return Type

Angle value in 1/10 of a degree.  Default value is 0.

Remarks

To set a label's angle to 90 degrees, set the Angle property to 900, and be sure the height of the control will accommodate the text, as labels do not grow automatically.

Example

[C#] 

private void Detail_Format(object sender, System.EventArgs eArgs) 

    this.Label1.Angle = 900; 
}

[Visual Basic] 

Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
   Me.Label1.Angle = 900
End Sub

See Also

Label Class  | Label Members

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.