Desktop Functions: Smart Device Functions:
|
Search Results for "SetSysColors" in [All]user321: SetSysColors
static extern bool SetSysColors(int cElements, int [] lpaElements,
public static extern bool SetSysColors(int cElements, int [] lpaElements, int [] lpaRgbValues);
SetSysColors(elements.Length, elements, colors); coredll2: SetSysColors static extern int SetSysColors(int cElements, Int32[] lpaElements, Int32[] lpaRgbValues); Public Shared Function SetSysColors(ByVal cElements As Integer, ByRef lpaElements As Integer(), ByRef lpaRgbValues As Integer()) As Integer
/// SetSysColors: Importierte Methode aus der CoreDll.dll
private static extern bool SetSysColors(int cElements, Int32[] lpaElements, Int32[] lpaRgbValues);
bool retVel = cSystemColors.SetSysColors(iElements, lpaElements, lpaRgbValues);
throw new Exception(string.Format("SetSysColors() returned {0}!", error)); |