Graphics.GetContextInfo 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetContextInfo(PointF, Region) |
取得累計位移和剪輯區域。 |
GetContextInfo() |
已淘汰.
取得累計圖形內容。 |
GetContextInfo(PointF) |
取得累計位移。 |
GetContextInfo(PointF, Region)
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
取得累計位移和剪輯區域。
public:
void GetContextInfo([Runtime::InteropServices::Out] System::Drawing::PointF % offset, [Runtime::InteropServices::Out] System::Drawing::Region ^ % clip);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public void GetContextInfo (out System.Drawing.PointF offset, out System.Drawing.Region? clip);
[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
member this.GetContextInfo : PointF * Region -> unit
Public Sub GetContextInfo (ByRef offset As PointF, ByRef clip As Region)
參數
- offset
- PointF
當這個方法傳回時,會包含累計位移。 此參數會被視為未初始化。
- clip
- Region
當這個方法傳回時,如果剪輯區域是無限的,則包含累計剪輯區域或 null
。 此參數會被視為未初始化。
- 屬性
適用於
GetContextInfo()
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
警告
Use the Graphics.GetContextInfo overloads that accept arguments for better performance and fewer allocations.
取得累計圖形內容。
public:
System::Object ^ GetContextInfo();
[System.Obsolete("Use the Graphics.GetContextInfo overloads that accept arguments for better performance and fewer allocations.", DiagnosticId="SYSLIB0016", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public object GetContextInfo ();
public object GetContextInfo ();
[<System.Obsolete("Use the Graphics.GetContextInfo overloads that accept arguments for better performance and fewer allocations.", DiagnosticId="SYSLIB0016", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
member this.GetContextInfo : unit -> obj
member this.GetContextInfo : unit -> obj
Public Function GetContextInfo () As Object
傳回
代表累計圖形內容的 Object。
- 屬性
備註
傳回值是物件陣列,其中第一個元素包含累計剪輯區域,而第二個元素則包含累計轉譯/轉換矩陣。
適用於
GetContextInfo(PointF)
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
- 來源:
- Graphics.cs
取得累計位移。
public:
void GetContextInfo([Runtime::InteropServices::Out] System::Drawing::PointF % offset);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public void GetContextInfo (out System.Drawing.PointF offset);
[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
member this.GetContextInfo : PointF -> unit
Public Sub GetContextInfo (ByRef offset As PointF)
參數
- offset
- PointF
當這個方法傳回時,會包含累計位移。 此參數會被視為未初始化。
- 屬性