當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# Console.MoveBufferArea用法及代碼示例


Console.MoveBufferArea方法用於將指定的屏幕區域移動到目標區域。

用法: public static void MoveBufferArea (int sourceLeft, int sourceTop, int sourceWidth, int sourceHeight, int targetLeft, int targetTop);

參數:
sourceLeft:源區域的最左列。
sourceTop:源區域的最上一行。
sourceWidth:源區域中的列數。
sourceHeight:源區域中的行數。
targetLeft:目標區域的最左列。
targetTop:目標區域的最上一行。


異常:

  • ArgumentOutOfRangeException:
    • 一個或多個參數小於零。
    • 如果sourceLeft或targetLeft大於或等於BufferWidth。
    • 如果sourceTop或targetTop大於或等於BufferHeight。
    • 如果sourceTop + sourceHeight大於或等於BufferHeight。
    • 如果sourceLeft + sourceWidth大於或等於BufferWidth。
  • IOException:如果發生I /O錯誤。

示例1:

// C# program to print GeeksForGeeks 
using System; 
  
namespace GFG { 
  
class Program { 
  
    static void Main(string[] args) 
    { 
        Console.WriteLine("GeeksForGeeks"); 
    } 
} 
}

輸出:

示例2:

// C# program to change area 
// of GeeksForGeeks 
using System; 
  
namespace GFG { 
  
class Program { 
  
    static void Main(string[] args) 
    { 
        Console.WriteLine("GeeksForGeeks"); 
  
        // using the method 
        Console.MoveBufferArea(0, 0, Console.BufferWidth, 
                           Console.BufferHeight, 10, 10); 
    } 
} 
}

輸出:

注意:

  • 查看輸出圖像中文本位置的差異。
  • 如果目標和源參數指定的位置位於當前屏幕緩衝區的邊界之外,則僅複製源區域中適合目標區域的部分。即,源區域被裁剪以適合當前的屏幕緩衝區。
  • MoveBufferArea方法將源區域複製到目標區域。如果目標區域不與源區域相交,則源區域將使用當前的前景色和背景色填充空白。否則,將不填充源區域的相交部分。

參考:



相關用法


注:本文由純淨天空篩選整理自ShivamChauhan5大神的英文原創作品 Console.MoveBufferArea Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。