コード例 #1
0
 public void Copy(AxisName axisName)
 {
     show     = axisName.show;
     name     = axisName.name;
     location = axisName.location;
     textStyle.Copy(axisName.textStyle);
 }
コード例 #2
0
ファイル: Axis.cs プロジェクト: inquick/unity-ugui-XCharts
 public void Copy(AxisName other)
 {
     m_Show     = other.show;
     m_Name     = other.name;
     m_Location = other.location;
     m_Gap      = other.gap;
     m_Rotate   = other.rotate;
     m_Color    = other.color;
     m_FontSize = other.fontSize;
 }
コード例 #3
0
        public AxisName Clone()
        {
            var axisName = new AxisName();

            axisName.show     = show;
            axisName.name     = name;
            axisName.location = location;
            axisName.textStyle.Copy(textStyle);
            return(axisName);
        }
コード例 #4
0
ファイル: AxisName.cs プロジェクト: WheatDew/HydrologyProject
 public void Copy(AxisName axisName)
 {
     show      = axisName.show;
     name      = axisName.name;
     location  = axisName.location;
     offset    = axisName.offset;
     rotate    = axisName.rotate;
     color     = axisName.color;
     fontSize  = axisName.fontSize;
     fontStyle = axisName.fontStyle;
 }
コード例 #5
0
 public void Copy(AxisName other)
 {
     m_Show      = other.show;
     m_Name      = other.name;
     m_Location  = other.location;
     m_Offset    = other.offset;
     m_Rotate    = other.rotate;
     m_Color     = other.color;
     m_FontSize  = other.fontSize;
     m_FontStyle = other.fontStyle;
 }
コード例 #6
0
ファイル: AxisName.cs プロジェクト: WheatDew/HydrologyProject
        public AxisName Clone()
        {
            var axisName = new AxisName();

            axisName.show      = show;
            axisName.name      = name;
            axisName.location  = location;
            axisName.offset    = offset;
            axisName.rotate    = rotate;
            axisName.color     = color;
            axisName.fontSize  = fontSize;
            axisName.fontStyle = fontStyle;
            return(axisName);
        }