RenderingLibrary.Graphics.NineSlice.NineSlice C# (CSharp) Method

NineSlice() static private method

static private NineSlice ( ) : System
return System
        static NineSlice()
        {
            PossibleNineSliceEndings = new string[9];
            PossibleNineSliceEndings[(int) NineSliceSections.Center] = "_center";
            PossibleNineSliceEndings[(int) NineSliceSections.Left] = "_left";
            PossibleNineSliceEndings[(int) NineSliceSections.Right] = "_right";
            PossibleNineSliceEndings[(int) NineSliceSections.TopLeft] = "_topLeft";
            PossibleNineSliceEndings[(int) NineSliceSections.Top] = "_topCenter";
            PossibleNineSliceEndings[(int) NineSliceSections.TopRight] = "_topRight";
            PossibleNineSliceEndings[(int) NineSliceSections.BottomLeft] = "_bottomLeft";
            PossibleNineSliceEndings[(int) NineSliceSections.Bottom] = "_bottomCenter";
            PossibleNineSliceEndings[(int) NineSliceSections.BottomRight] = "_bottomRight";

        }