Interface IGetNativePointers
Interface that represents an object that could provide some native pointers.
Namespace: Evergine.Common.Helpers
Assembly: Evergine.Common.dll
Syntax
public interface IGetNativePointers
  Properties
AvailablePointerKeys
Gets a list of all available keys to obtain native pointers.
Declaration
IEnumerable<string> AvailablePointerKeys { get; }
  Property Value
| Type | Description | 
|---|---|
| IEnumerable<string> | 
Methods
GetNativePointer(string, out IntPtr)
Obtain a native pointer of this graphics context using the given key.
Declaration
bool GetNativePointer(string pointerKey, out IntPtr nativePointer)
  Parameters
| Type | Name | Description | 
|---|---|---|
| string | pointerKey | The pointer key.  | 
      
| IntPtr | nativePointer | The native pointer.  | 
      
Returns
| Type | Description | 
|---|---|
| bool | True if there are an available pointer with this key.  |