public static extern void CSSNodeStyleSetBorder(IntPtr node, CSSEdge edge, float border);
public static extern void CSSNodeStyleSetMargin(IntPtr node, CSSEdge edge, float margin);
public static extern void CSSNodeStyleSetPadding(IntPtr node, CSSEdge edge, float padding);
public float GetPosition(CSSEdge edge) { return(Native.CSSNodeStyleGetPosition(_cssNode, edge)); }
public static extern void CSSNodeStyleSetPosition(IntPtr node, CSSEdge edge, float position);
public float GetPadding(CSSEdge edge) { return(Native.CSSNodeStyleGetPadding(_cssNode, edge)); }
public float GetBorder(CSSEdge edge) { return(Native.CSSNodeStyleGetBorder(_cssNode, edge)); }
public void SetPosition(CSSEdge edge, float position) { AssertNativeInstance(); Native.CSSNodeStyleSetPosition(_cssNode, edge, position); }
public static extern float CSSNodeStyleGetBorder(IntPtr node, CSSEdge edge);
public void SetPadding(CSSEdge edge, float padding) { AssertNativeInstance(); Native.CSSNodeStyleSetPadding(_cssNode, edge, padding); }
public void SetBorder(CSSEdge edge, float border) { AssertNativeInstance(); Native.CSSNodeStyleSetBorder(_cssNode, edge, border); }
public void SetMargin(CSSEdge edge, float value) { AssertNativeInstance(); Native.CSSNodeStyleSetMargin(_cssNode, edge, value); }
public void SetPosition(CSSEdge edge, float position) { CheckDisposed(); }
public void SetBorder(CSSEdge edge, float border) { CheckDisposed(); Native.CSSNodeStyleSetBorder(_cssNode, edge, border); }
public void SetPadding(CSSEdge edge, float padding) { CheckDisposed(); Native.CSSNodeStyleSetPadding(_cssNode, edge, padding); }
public static extern float CSSNodeStyleGetMargin(IntPtr node, CSSEdge edge);
public void SetMargin(CSSEdge edge, float value) { Native.CSSNodeStyleSetMargin(_cssNode, edge, value); }
public static extern float CSSNodeStyleGetPadding(IntPtr node, CSSEdge edge);
public void SetPadding(CSSEdge edge, float padding) { Native.CSSNodeStyleSetPadding(_cssNode, edge, padding); }
public static extern float CSSNodeStyleGetPosition(IntPtr node, CSSEdge edge);
public void SetBorder(CSSEdge edge, float border) { Native.CSSNodeStyleSetBorder(_cssNode, edge, border); }
public void SetPosition(CSSEdge edge, float position) { Native.CSSNodeStyleSetPosition(_cssNode, edge, position); }
public float GetMargin(CSSEdge edge) { return(Native.CSSNodeStyleGetMargin(_cssNode, edge)); }
public void SetMargin(CSSEdge edge, float value) { CheckDisposed(); Native.CSSNodeStyleSetMargin(_cssNode, edge, value); }