Exemple #1
0
        /// <summary>
        /// Create a new Sheet Selection Set.
        /// </summary>
        /// <param name="sheetSet">The Sheet Set to contain the Selection Set.</param>
        /// <param name="name">The name of the Sheet Selection Set.</param>
        /// <returns>The new Sheet Selection Set.</returns>
        public static SheetSelectionSet BySheetSetAndName(SheetSet sheetSet, string name)
        {
            AcSmSheetSelSet newSelSet = null;

            sheetSet.BaseObject.GetSheetSelSets().Add(name, name, ref newSelSet);
            return(new SheetSelectionSet(newSelSet));
        }
 // constuctors need to be static methods in order to show up in the Create category
 internal EmptyClass(AcSmSheetSelSet baseObject)
 {
     _curSelSet = baseObject;
 }
Exemple #3
0
 // constuctors need to be static methods in order to show up in the Create category
 internal SheetSelectionSet(AcSmSheetSelSet baseObject)
 {
     _curSelSet = baseObject;
 }