コード例 #1
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern void YGNodeStyleSetPaddingPercent(YGNodeHandle node, YogaEdge edge, float padding);
コード例 #2
0
 public static extern YogaJustify YGNodeStyleGetJustifyContent(YGNodeHandle node);
コード例 #3
0
 public static extern YogaAlign YGNodeStyleGetAlignContent(YGNodeHandle node);
コード例 #4
0
 public static extern void YGNodeStyleSetDirection(YGNodeHandle node, YogaDirection direction);
コード例 #5
0
 public static extern YogaFlexDirection YGNodeStyleGetFlexDirection(YGNodeHandle node);
コード例 #6
0
 public static extern void YGNodeSetMeasureFunc(
     YGNodeHandle node,
     [MarshalAs(UnmanagedType.FunctionPtr)] YogaMeasureFunc measureFunc);
コード例 #7
0
 public static extern void YGNodeSetHasNewLayout(
     YGNodeHandle node,
     [MarshalAs(UnmanagedType.I1)] bool hasNewLayout);
コード例 #8
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern float YGNodeLayoutGetHeight(YGNodeHandle node);
コード例 #9
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern float YGNodeLayoutGetMargin(YGNodeHandle node, YogaEdge edge);
コード例 #10
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern float YGNodeLayoutGetBottom(YGNodeHandle node);
コード例 #11
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern float YGNodeLayoutGetWidth(YGNodeHandle node);
コード例 #12
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern float YGNodeStyleGetBorder(YGNodeHandle node, YogaEdge edge);
コード例 #13
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern void YGNodeStyleSetBorder(YGNodeHandle node, YogaEdge edge, float border);
コード例 #14
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern YogaValueType YGNodeStyleGetPadding(YGNodeHandle node, YogaEdge edge);
コード例 #15
0
 public static extern void YGNodePrint(YGNodeHandle node, YogaPrintOptions options);
コード例 #16
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern float YGNodeLayoutGetPadding(YGNodeHandle node, YogaEdge edge);
コード例 #17
0
 public static extern void YGNodeCopyStyle(YGNodeHandle dstNode, YGNodeHandle srcNode);
コード例 #18
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern YogaDirection YGNodeLayoutGetDirection(YGNodeHandle node);
コード例 #19
0
 public static extern void YGNodeSetBaselineFunc(
     YGNodeHandle node,
     [MarshalAs(UnmanagedType.FunctionPtr)] YogaBaselineFunc baselineFunc);
コード例 #20
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern void YGNodeReset(YGNodeHandle node);
コード例 #21
0
 public static extern bool YGNodeGetHasNewLayout(YGNodeHandle node);
コード例 #22
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern void YGNodeInsertChild(
     YGNodeHandle node,
     YGNodeHandle child,
     uint index);
コード例 #23
0
 public static extern void YGNodeStyleSetFlexDirection(YGNodeHandle node, YogaFlexDirection flexDirection);
コード例 #24
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern void YGNodeRemoveChild(YGNodeHandle node, YGNodeHandle child);
コード例 #25
0
 public static extern void YGNodeStyleSetJustifyContent(YGNodeHandle node, YogaJustify justifyContent);
コード例 #26
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern void YGNodeCalculateLayout(
     YGNodeHandle node,
     float availableWidth,
     float availableHeight,
     YogaDirection parentDirection);
コード例 #27
0
 public static extern void YGNodeStyleSetAlignContent(YGNodeHandle node, YogaAlign alignContent);
コード例 #28
0
 public static extern bool YGNodeIsDirty(YGNodeHandle node);
コード例 #29
0
 public static extern void YGNodeStyleSetAlignItems(YGNodeHandle node, YogaAlign alignItems);
コード例 #30
0
ファイル: Native.cs プロジェクト: zintus/yoga
 public static extern YogaValueType YGNodeStyleGetMargin(YGNodeHandle node, YogaEdge edge);