Example #1
0
 public static extern void CSSNodeStyleSetBorder(IntPtr node, CSSEdge edge, float border);
Example #2
0
 public static extern void CSSNodeStyleSetMargin(IntPtr node, CSSEdge edge, float margin);
Example #3
0
 public static extern void CSSNodeStyleSetPadding(IntPtr node, CSSEdge edge, float padding);
Example #4
0
 public float GetPosition(CSSEdge edge)
 {
     return(Native.CSSNodeStyleGetPosition(_cssNode, edge));
 }
Example #5
0
 public static extern void CSSNodeStyleSetPosition(IntPtr node, CSSEdge edge, float position);
Example #6
0
 public float GetPadding(CSSEdge edge)
 {
     return(Native.CSSNodeStyleGetPadding(_cssNode, edge));
 }
Example #7
0
 public float GetBorder(CSSEdge edge)
 {
     return(Native.CSSNodeStyleGetBorder(_cssNode, edge));
 }
Example #8
0
 public void SetPosition(CSSEdge edge, float position)
 {
     AssertNativeInstance();
     Native.CSSNodeStyleSetPosition(_cssNode, edge, position);
 }
Example #9
0
 public static extern float CSSNodeStyleGetBorder(IntPtr node, CSSEdge edge);
Example #10
0
 public void SetPadding(CSSEdge edge, float padding)
 {
     AssertNativeInstance();
     Native.CSSNodeStyleSetPadding(_cssNode, edge, padding);
 }
Example #11
0
 public void SetBorder(CSSEdge edge, float border)
 {
     AssertNativeInstance();
     Native.CSSNodeStyleSetBorder(_cssNode, edge, border);
 }
Example #12
0
 public void SetMargin(CSSEdge edge, float value)
 {
     AssertNativeInstance();
     Native.CSSNodeStyleSetMargin(_cssNode, edge, value);
 }
Example #13
0
 public void SetPosition(CSSEdge edge, float position)
 {
     CheckDisposed();
 }
Example #14
0
 public void SetBorder(CSSEdge edge, float border)
 {
     CheckDisposed();
     Native.CSSNodeStyleSetBorder(_cssNode, edge, border);
 }
Example #15
0
 public void SetPadding(CSSEdge edge, float padding)
 {
     CheckDisposed();
     Native.CSSNodeStyleSetPadding(_cssNode, edge, padding);
 }
Example #16
0
 public static extern float CSSNodeStyleGetMargin(IntPtr node, CSSEdge edge);
Example #17
0
 public void SetMargin(CSSEdge edge, float value)
 {
     Native.CSSNodeStyleSetMargin(_cssNode, edge, value);
 }
Example #18
0
 public static extern float CSSNodeStyleGetPadding(IntPtr node, CSSEdge edge);
Example #19
0
 public void SetPadding(CSSEdge edge, float padding)
 {
     Native.CSSNodeStyleSetPadding(_cssNode, edge, padding);
 }
Example #20
0
 public static extern float CSSNodeStyleGetPosition(IntPtr node, CSSEdge edge);
Example #21
0
 public void SetBorder(CSSEdge edge, float border)
 {
     Native.CSSNodeStyleSetBorder(_cssNode, edge, border);
 }
Example #22
0
 public static extern void CSSNodeStyleSetBorder(IntPtr node, CSSEdge edge, float border);
Example #23
0
 public void SetPosition(CSSEdge edge, float position)
 {
     Native.CSSNodeStyleSetPosition(_cssNode, edge, position);
 }
Example #24
0
 public static extern void CSSNodeStyleSetMargin(IntPtr node, CSSEdge edge, float margin);
Example #25
0
 public static extern float CSSNodeStyleGetPosition(IntPtr node, CSSEdge edge);
Example #26
0
 public static extern void CSSNodeStyleSetPadding(IntPtr node, CSSEdge edge, float padding);
Example #27
0
 public static extern float CSSNodeStyleGetMargin(IntPtr node, CSSEdge edge);
Example #28
0
 public static extern void CSSNodeStyleSetPosition(IntPtr node, CSSEdge edge, float position);
Example #29
0
 public static extern float CSSNodeStyleGetPadding(IntPtr node, CSSEdge edge);
Example #30
0
 public float GetMargin(CSSEdge edge)
 {
     return(Native.CSSNodeStyleGetMargin(_cssNode, edge));
 }
Example #31
0
 public static extern float CSSNodeStyleGetBorder(IntPtr node, CSSEdge edge);
Example #32
0
 public void SetMargin(CSSEdge edge, float value)
 {
     CheckDisposed();
     Native.CSSNodeStyleSetMargin(_cssNode, edge, value);
 }