Click here to Skip to main content
15,880,427 members
Articles / Desktop Programming / XAML

Silverlight 1.1 Hebrew and Arabic Language Support

Rate me:
Please Sign up or sign in to vote.
4.05/5 (8 votes)
31 Jan 2008Ms-PL7 min read 44K   290   10  
An article presenting Silverlight 1.1 Hebrew and Arabic language support
/*
 * Created by SharpDevelop.
 * User: itai
 * Date: 1/16/2007
 * Time: 7:55 PM
 * 
 * To change this template use Tools | Options | Coding | Edit Standard Headers.
 */
namespace NBidi
{
	public enum UnicodeGeneralCategory {
		///<summary>Letter, Uppercase</summary>
		Lu,
		///<summary>Letter, Lowercase</summary>
		Ll,
		///<summary>Letter, Titlecase</summary>
		Lt,
		///<summary>Letter, Modifier</summary>
		Lm,
		///<summary>Letter, Other</summary>
		Lo,
		///<summary>Mark, Nonspacing</summary>
		Mn,
		///<summary>Mark, Spacing Combining</summary>
		Mc,
		///<summary>Mark, Enclosing</summary>
		Me,
		///<summary>Number, Decimal Digit</summary>
		Nd,
		///<summary>Number, Letter</summary>
		Nl,
		///<summary>Number, Other</summary>
		No,
		///<summary>Punctuation, Connector</summary>
		Pc,
		///<summary>Punctuation, Dash</summary>
		Pd,
		///<summary>Punctuation, Open</summary>
		Ps,
		///<summary>Punctuation, Close</summary>
		Pe,
		///<summary>Punctuation, Initial quote (may behave like Ps or Pe depending on usage)</summary>
		Pi,
		///<summary>Punctuation, Final quote (may behave like Ps or Pe depending on usage)</summary>
		Pf,
		///<summary>Punctuation, Other</summary>
		Po,
		///<summary>Symbol, Math</summary>
		Sm,
		///<summary>Symbol, Currency</summary>
		Sc,
		///<summary>Symbol, Modifier</summary>
		Sk,
		///<summary>Symbol, Other</summary>
		So,
		///<summary>Separator, Space</summary>
		Zs,
		///<summary>Separator, Line</summary>
		Zl,
		///<summary>Separator, Paragraph</summary>
		Zp,
		///<summary>Other, Control</summary>
		Cc,
		///<summary>Other, Format</summary>
		Cf,
		///<summary>Other, Surrogate</summary>
		Cs,
		///<summary>Other, Private Use</summary>
		Co,
		///<summary>Other, Not Assigned (no characters in the file have this property)</summary>
		Cn
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
JustinAngel.Net, Senior .Net consultant
Israel Israel
Justin-Josef Angel is a C# Microsoft Most Valuable professional, a Senior .Net consultant in Israel with 4 years of .Net experience and has 8 years of Web experience.

Justin's been working this past year on two Enterprise sized Silverlight projects with his customers. During that time he's gained a real-insight into Silverlight's inner workings and how to integrate Silverlight into the real world of software development. Additionally, During that time he's developed a few well-known projects like the "Silverlight 1.0 Javascript Intellisense", "Silverlight 1.1 Hebrew & Arabic Languages support" and a few others you might know.

Justin is also a seasoned presenter with an impressive track-record of talking in front of thousands of people in Israel.

Justin owns the first .Net blog written in Hebrew - http://www.JustinAngel.Net .
And he also owns an additional blog with mixed Hebrew & English content - http://blogs.Microsoft.co.il/blogs/JustinAngel.

A full list of his articles (all 100+ of them) can be found at: http://www.JustinAngel.Net/#index




Comments and Discussions