Graphics.GetContextInfo Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
GetContextInfo(PointF, Region) |
Získá kumulativní posun a oblast klipů. |
GetContextInfo() |
Zastaralé.
Získá kumulativní grafický kontext. |
GetContextInfo(PointF) |
Získá kumulativní posun. |
GetContextInfo(PointF, Region)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
Získá kumulativní posun a oblast klipů.
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)
Parametry
- offset
- PointF
Pokud tato metoda vrátí, obsahuje kumulativní posun. Tento parametr se považuje za neinicializovaný.
- clip
- Region
Pokud tato metoda vrátí, obsahuje kumulativní oblast klipu nebo null
pokud je oblast klipu nekonečná. Tento parametr se považuje za neinicializovaný.
- Atributy
Platí pro
GetContextInfo()
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
Upozornění
Use the Graphics.GetContextInfo overloads that accept arguments for better performance and fewer allocations.
Získá kumulativní grafický kontext.
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
Návraty
Object představující kumulativní grafický kontext.
- Atributy
Poznámky
Vrácená hodnota je pole objektů, kde první prvek obsahuje kumulativní oblast klipu a druhý prvek obsahuje kumulativní matici překladu a transformace.
Platí pro
GetContextInfo(PointF)
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
- Zdroj:
- Graphics.cs
Získá kumulativní posun.
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)
Parametry
- offset
- PointF
Pokud tato metoda vrátí, obsahuje kumulativní posun. Tento parametr se považuje za neinicializovaný.
- Atributy