setSize() public method

public setSize ( int row, int col, int wp, int hp ) : void
row int
col int
wp int
hp int
return void
コード例 #1
0
 public void setPtySize(int col, int row, int wp, int hp)
 {
     //if(thread==null) return;
     try
     {
         RequestWindowChange request = new RequestWindowChange();
         request.setSize(col, row, wp, hp);
         request.request(session, this);
     }
     catch (Exception e)
     {
         throw new JSchException("ChannelShell.setPtySize: " + e.ToString());
     }
 }
コード例 #2
0
ファイル: ChannelShell.cs プロジェクト: soywiz/csharputils
		public void setPtySize(int col, int row, int wp, int hp)
		{
			//if(thread==null) return;
			try
			{
				RequestWindowChange request=new RequestWindowChange();
				request.setSize(col, row, wp, hp);
				request.request(session, this);
			}
			catch(Exception e)
			{
				throw new JSchException("ChannelShell.setPtySize: "+e.ToString());
			}
		}
コード例 #3
0
 public void setPtySize(int row, int col, int wp, int hp)
 {
     //if(thread==null) return;
     try
     {
         RequestWindowChange request=new RequestWindowChange();
         request.setSize(row, col, wp, hp);
         request.request(session, this);
     }
     catch(Exception e)
     {
         Console.WriteLine("ChannelShell.setPtySize: "+e);
     }
 }