setSize() public method

Inform this View of the dimensions of frames coming from |stream|.
public setSize ( Endpoint stream, int width, int height ) : void
stream Endpoint
width int
height int
return void
Exemplo n.º 1
0
 //JAVA TO C# CONVERTER WARNING: 'final' parameters are not allowed in .NET:
 //ORIGINAL LINE: @Override public void setSize(final int width, final int height)
 public void SetSize(int width, int height)
 {
     view.QueueEvent(() => view.setSize(stream, width, height));
 }