コード例 #1
0
 public static string GetUserStringAttribute(this NXObject nxObject, string title) =>
 nxObject.GetUserAttribute(title, NXObject.AttributeType.Any, -1).StringValue;
コード例 #2
0
 public static int GetUserIntegerAttribute(this NXObject nxObject, string title) =>
 nxObject.GetUserAttribute(title, NXObject.AttributeType.Integer, -1).IntegerValue;
コード例 #3
0
 public static bool GetUserBooleanAttribute(this NXObject nxObject, string title) =>
 nxObject.GetUserAttribute(title, NXObject.AttributeType.Boolean, -1).BooleanValue;