SIL.FieldWorks.IText.ConcordanceControl.CurrentSelectedWs C# (CSharp) 메소드

CurrentSelectedWs() 개인적인 메소드

private CurrentSelectedWs ( ) : int
리턴 int
		private int CurrentSelectedWs()
		{
			var ws = m_cbWritingSystem.SelectedItem as IWritingSystem;
			// Could have nothing selected.  See LT-8041.
			if (ws == null)
				return m_cache.DefaultVernWs;
			else
				return ws.Handle;
		}