Exemple #1
0
 public void GetOutputStations(string name,
                               ref eOutputStationType outputStationType,
                               ref double maxStationSpacing,
                               ref int minStationNumber,
                               ref bool noOutputAndDesignAtElementEnds,
                               ref bool noOutputAndDesignAtPointLoads)
 {
 }
Exemple #2
0
 public void SetOutputStations(string name,
                               eOutputStationType outputStationType,
                               double maxStationSpacing,
                               int minStationNumber,
                               bool noOutputAndDesignAtElementEnds,
                               bool noOutputAndDesignAtPointLoads,
                               eItemType itemType = eItemType.Object)
 {
 }
        /// <summary>
        /// Converts the type of to output station.
        /// </summary>
        /// <param name="value">The value.</param>
        /// <returns>eOutputStationType.</returns>
        private static string convertFromOutputStationType(eOutputStationType value)
        {
            switch (value)
            {
            case eOutputStationType.MinStations:
                return("MinNumSta");

            case eOutputStationType.MaxSpacing:
                return("MaxStaSpcg");

            default:
                return("MinNumSta");
            }
        }