LabelPlus.LabelItem.LabelItem C# (CSharp) Method

LabelItem() public method

public LabelItem ( float x_percent, float y_percent, string text, int category ) : System
x_percent float
y_percent float
text string
category int
return System
        public LabelItem(float x_percent, float y_percent, string text, int category){
            if (!(category >= 1 && category <= 9))
                throw new Exception();

            X_percent = x_percent;
            Y_percent = y_percent;
            Text = text;
            Category = category;
        }
    }
LabelItem