次の方法で共有


Displaying text vertically in SQL Server Reporting Services 2000

File this one under RTFM...but I had no clue even though it's right there in books online. Duh!

Anyway, if you want to render text vertically instead of horizontally, use the WritingMode property of a text box, subtotal, title, or legend

Comments

  • Anonymous
    March 13, 2007
    This is great but in 2005 cannot it only displays with a top down not bottom up direction!
  • Anonymous
    February 01, 2009
    Review posting located here:http://tejasp.blogspot.com/2009/01/ssrs-reports-rotate-text-or-split.htmlTejas
  • Anonymous
    July 11, 2012
    Public Shared Function VerticalStr(ByVal s as String) Dim r As String r = "" Dim k As Integer For k = 1 To Len(s) r = r & vbCrLf & Mid(s, k, 1) Next k Return r End Function