久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

IDrawingDoc Interface 学习笔记

發布時間:2023/12/18 编程问答 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 IDrawingDoc Interface 学习笔记 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Solidworks學習筆記-鏈接Solidworks

在此基礎上

允許訪問執行繪圖操作的函數。

屬性

NameDescription備注
ActiveDrawingViewGets the currently active drawing view. ?獲取當前活動的圖紙視圖。
AutomaticViewUpdateGets or sets whether the drawing views in this drawing are automatically updated if the underlying model in that drawing view changes. ?獲取或設置該工程圖中的工程視圖是否在該工程視圖中的基礎模型發生更改時自動更新。
BackgroundProcessingOptionGets or sets the background processing option for this drawing. ?獲取或設置此繪圖的后臺處理選項。
HiddenViewsVisibleShows or hides all of the hidden drawing views. ?顯示或隱藏所有隱藏的圖紙視圖。
IActiveDrawingViewGets the currently active drawing view. ?獲取當前活動的圖紙視圖。
SheetGets the specified sheet. ?獲取指定的工作表。

System.int BackgroundProcessingOption {get; set;}

This example shows how to fire notifications when background processing events occur.//---------------------------------------------------------------------------- // Preconditions: // 1. Create a VSTA C# macro. // a. Copy and paste SolidWorksMacro.cs code in the macro. // b. Create a form, Form1, that contains the following // controls: // * CheckBox1 with caption Enable background processing and open // drawing. // * button1 with caption Close after background processing end event // fires". // c. Copy and paste Form1.cs code in your form's code window. // d. Modify the path in Form1.cs to open a huge drawing document that // contains many parts. // 2. Press F5 to start and close the debugger. // 3. Click Build > Build macro_name to build a DLL for the macro. // 4. Save and close the macro. // // Postconditions: // 1. Open the Windows Task manager, click the Processes tab, and click the CPU column // header to sort the processes in descending order. // 2. In SOLIDWORKS, click Tools > Macro > Run. // a. Locate your macro's \SwMacro\bin\Debug folder. // b. Select macro_name.dll. // c. Click Open to open the form. // 3. Select the Enable background processing and open drawing checkbox on the form. // 4. Displays a checkmark in the check box. // 5. Click OK to close the Background processing enabled message box. // 6. Opens the specified drawing. // 7. Fires the background processing start events. // 8. Click OK to close the Background processing start event fired message box. // 9. In the Windows Task Manager, observe that several sldbgproc.exe processes are // occupying most of the CPU. // 10. Click OK to close the Background processing stop event fired message box. // 11. Click Close after background processing end event fired button on the form. // 12. Unloads Form1. //----------------------------------------------------------------------------------//SolidWorksMacro.csusing SolidWorks.Interop.sldworks; using System.Runtime.InteropServices; using System; using System.Windows.Forms;namespace BackgroundProcessingEventsCSharp.csproj {public partial class SolidWorksMacro{public SldWorks swApp;public void Main(){//Create and show an instance of the formForm1 myForm = new Form1();myForm.Show();}} }//Form1using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Windows.Forms; using System.Diagnostics; using System.Collections; using System.Runtime.InteropServices; using System; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text;namespace BackgroundProcessingEventsCSharp.csproj {public partial class Form1 : Form{public Form1(){InitializeComponent();}public SldWorks swApp;public bool checkBoxClicked;private void checkBox1_CheckedChanged(object sender, EventArgs e){try{swApp = (SldWorks)System.Runtime.InteropServices.Marshal.GetActiveObject("SldWorks.Application");}catch (Exception ex){MessageBox.Show(ex.Message);return;}ModelDoc2 swModelDoc = default(ModelDoc2);DrawingDoc swDrawingDoc = default(DrawingDoc);string filePath = null;filePath = "path_and_filename_of_huge_drawing";DocumentSpecification docSpecification = default(DocumentSpecification);// Set up eventsAttachEventHandlers();// Enable background processingswApp.EnableBackgroundProcessing = true;MessageBox.Show("Background processing enabled");// Open huge drawingdocSpecification = (DocumentSpecification)swApp.GetOpenDocSpec(filePath);docSpecification.Silent = true;swModelDoc = (ModelDoc2)swApp.OpenDoc7(docSpecification);swDrawingDoc = (DrawingDoc)swModelDoc;// Set document background processing to application settingswDrawingDoc.BackgroundProcessingOption = (int)swBackgroundProcessOption_e.swBackgroundProcessing_DeferToApplication;}public void AttachEventHandlers(){AttachSWEvents();}public void AttachSWEvents(){swApp.BackgroundProcessingStartNotify += this.mySwApp_BackgroundProcessingStartNotify;swApp.BackgroundProcessingEndNotify += this.mySwApp_BackgroundProcessingEndNotify;}private int mySwApp_BackgroundProcessingStartNotify(string filename){MessageBox.Show("Background processing start event fired");return 1;}private int mySwApp_BackgroundProcessingEndNotify(string filename){MessageBox.Show("Background processing end event fired");swApp.EnableBackgroundProcessing = false;return 1;}public void CheckBox1_Click(object sender, System.EventArgs e){checkBoxClicked = true;}private void button1_Click(object sender, EventArgs e){this.Close();}} }

Sheet Sheet( System.string Name) {get;}

This example shows how to get each sheet in a multi-sheet drawing document regardless whether the sheet is loaded.//---------------------------------------------------------------------- // Preconditions: // 1. Click File > Open. // 2. Open public_documents\samples\tutorial\advdrawings\foodprocessor.sldrw. // 3. Click Select sheets to open > Selected > Sheet1* (load) > OK >Open. // 4. Open the Immediate window. // // Postconditions: // 1. Loads Sheet1 only. // 2. Mouse over Sheet2, Sheet3, and Sheet4 tabs and examine the // Immediate window. // // NOTE: Because this drawing is used elsewhere, do not save changes. //--------------------------------------------------------------------- using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System; using System.Diagnostics;namespace SheetDrawingDocCSharp.csproj {partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel = default(ModelDoc2);DrawingDoc swDraw = default(DrawingDoc);string[] vSheetName = null;int i = 0;bool bRet = false;string sheetName; swModel = (ModelDoc2)swApp.ActiveDoc;swDraw = (DrawingDoc)swModel; // Get the sheets in the drawing document vSheetName = (string[])swDraw.GetSheetNames();// Traverse the sheets and determine whether // they're loaded for (i = 0; i < vSheetName.Length; i++){sheetName = (string)vSheetName[i];bRet = swDraw.ActivateSheet(sheetName);Sheet swSheet = default(Sheet);swSheet = (Sheet)swDraw.get_Sheet(vSheetName[i]);if ((swSheet.IsLoaded())){Debug.Print(vSheetName[i] + " is loaded.");}else{Debug.Print(vSheetName[i] + " is not loaded.");}}}/// <summary> /// The SldWorks swApp variable is pre-assigned for you. /// </summary> public SldWorks swApp;} }

方法

NameDescription備注
ActivateSheetActivates the specified drawing sheet. ?激活指定的圖紙。
ActivateViewActivates the specified drawing view. ?激活指定的圖紙視圖。
AddChamferDimAdds a chamfer dimension. ?添加倒角尺寸。
AddHoleCallout2Adds a?hole callout at the specified position to the hole whose edge is selected. ?將指定位置的孔標注添加到其邊緣被選中的孔中。
AddLineStyleAdds a line style to the current drawing. ?向當前圖形添加線型。
AlignHorzUses the selected edge to align the current drawing view. ?使用選定邊對齊當前工程視圖。
AlignOrdinateAligns the ordinate dimension. ?對齊縱坐標尺寸。
AlignVertUses the selected edge to align the current drawing view. ?使用選定邊對齊當前工程視圖。
AttachAnnotationAttaches an existing annotation to a drawing sheet or view. ?將現有注釋附加到工程圖圖紙或視圖。
AttachDimensionsAttaches unattached dimensions. ?附加未附加的尺寸。
AutoBalloon5Automatically inserts BOM balloons in selected drawing views. ?在選定的工程視圖中自動插入 BOM 球標。
AutoDimensionAutomatically dimensions the selected drawing view. ?自動標注選定的工程視圖。
BreakViewBreaks the drawing view along the existing break lines. ?沿現有斷開線斷開工程視圖。
ChangeComponentLayerPuts the selected components on the specified layer. ?將選定的組件放在指定的層上。
ChangeOrdDirChanges the ordinate direction. ?改變縱坐標方向。
ChangeRefConfigurationOfFlatPatternViewChanges the referenced configuration of the flat-pattern view. ?更改平面模式視圖的參考配置。
Create1stAngleViews2Creates standard three orthographic views (first angle projection) for the specified model. ?為指定模型創建標準的三個正交視圖(第一角度投影)。
Create3rdAngleViews2Creates standard three orthographic views (third angle projection) for the specified model. ?為指定模型創建標準的三個正交視圖(第三角度投影)。
CreateAngDim4Creates a non-associative angular dimension. ?創建非關聯角度尺寸。
CreateAutoBalloonOptionsCreates an object that stores auto balloon options. ?創建一個存儲自動氣球選項的對象。
CreateAuxiliaryViewAt2Creates an auxiliary view based on a selected edge in a drawing view. ?基于工程視圖中的選定邊創建輔助視圖。
CreateBreakOutSectionCreates a broken-out section in a drawing document. ?在工程圖文檔中創建斷開的部分。
CreateConstructionGeometrySets?the selected sketch segments to?be construction geometry instead of sketch geometry. ?將選定的草圖段設置為構造幾何體而不是草圖幾何體。
CreateDetailViewAt4Creates a detail view in a drawing document. ?在工程圖文檔中創建局部視圖。
CreateDiamDim4Creates a non-associative diameter dimension. ?創建非關聯直徑尺寸。
CreateDrawViewFromModelView3Creates a drawing view on the current drawing sheet using the specified model view. ?使用指定的模型視圖在當前工程圖紙上創建工程視圖。
CreateFlatPatternViewFromModelView3Creates a flat-pattern view from a model view. ?從模型視圖創建平面圖案視圖。
CreateLayer2Creates a layer for this document. ?為此文檔創建一個圖層。
CreateLinearDim4Creates a non-associative linear dimension. ?創建非關聯線性標注。
CreateOrdinateDim4Creates a non-associative ordinate dimension. ?創建非關聯的縱坐標標注。
CreateRelativeViewCreates a relative drawing?view. ?創建相對繪圖視圖。
CreateSectionViewCreates a section view in the drawing using the selected section line. ?使用選定的剖面線在工程圖中創建剖面視圖。
CreateSectionViewAt5Creates the specified section view. ?創建指定的剖面視圖。
CreateText2Creates a?note?containing the specified text at a given location. ?在給定位置創建包含指定文本的注釋。
CreateUnfoldedViewAt3Creates an unfolded drawing view from the selected drawing view and places it in the drawing at the specified location. ?從選定的圖紙視圖創建展開的圖紙視圖,并將其放置在圖紙中的指定位置。
CreateViewport3Creates a an empty view in a drawing. ?在工程圖中創建一個空視圖。
DeleteAllCosmeticThreadsDeletes all cosmetic threads, which do not have callouts,?in a drawing of an assembly only. ?僅在裝配體的工程圖中刪除所有沒有標注的裝飾螺紋。
DeleteLineStyleDeletes the specified line style from the current drawing. ?從當前圖形中刪除指定的線型。
DimensionsAdds dimensions to the drawing from model. ?從模型向工程圖中添加尺寸。
DragModelDimensionCopies or moves dimensions to a different drawing view. ?將尺寸復制或移動到不同的工程視圖。
DrawingViewRotateRotates the selected drawing view. ?旋轉選定的工程視圖。
DropDrawingViewFromPalette2Moves the specified drawing view from the View Palette to the current drawing sheet. ?將指定的工程視圖從視圖調色板移動到當前工程圖紙。
EditCenterMarkPropertiesEdits center mark properties. ?編輯中心標記屬性。
EditOrdinateEdits an ordinate dimension. ?編輯縱坐標尺寸。
EditSelectedGtolGets the?selected GTol to edit. ?獲取要編輯的選定 GTol。
EditSheetPuts the current drawing sheet in edit mode. ?將當前圖紙置于編輯模式。
EditSketchAllows editing of?a sketch?in?the selected drawing view or sheet. ?允許在選定的圖紙視圖或圖紙中編輯草圖。
EditTemplatePuts the template of the current drawing sheet in edit mode. ?將當前圖紙的模板置于編輯模式。
EndDrawingProvides faster creation of entities in a drawing when used with?IDrawingDoc::StartDrawing. ?與 IDrawingDoc::StartDrawing 一起使用時,可以更快地在繪圖中創建實體。
FeatureByNameGets?the specified feature in the drawing. ?獲取繪圖中的指定特征。
FlipSectionLineFlips the cut direction of the selected section line. ?翻轉選定剖面線的切割方向。
GenerateViewPaletteViewsAdds the specified document's predefined drawing views to the View Palette. ?將指定文檔的預定義工程視圖添加到視圖調色板。
GetCurrentSheetGets the currently active drawing sheet. ?獲取當前活動的圖紙。
GetDrawingPaletteViewNamesGets the names of drawing views in the View Palette for the active drawing sheet. ?獲取活動圖紙的視圖調色板中圖紙視圖的名稱。
GetEditSheetGets whether the current drawing is in edit sheet mode or edit template mode. ?獲取當前圖形是處于編輯圖紙模式還是編輯模板模式。
GetFirstViewGets the first drawing?view?on the current sheet. ?獲取當前圖紙上的第一個繪圖視圖。
GetInsertionPointGets the current insertion (pick) point in a drawing. ?獲取繪圖中的當前插入(拾取)點。
GetLineFontCount2Gets the a number line fonts supported by this drawing. ?獲取此繪圖支持的數字線字體。
GetLineFontIdGets the associated line font ID. ?獲取關聯的行字體 ID。
GetLineFontInfo2Gets the detailed information about the specified line font. ?獲取指定線條字體的詳細信息。
GetLineFontName2Gets the name of the specified line font. ?獲取指定線條字體的名稱。
GetLineStylesGets all of the line styles used in the current document. ?獲取當前文檔中使用的所有線條樣式。
GetPenCountGets the number of pens currently defined in SOLIDWORKS. ?獲取當前在 SOLIDWORKS 中定義的筆數。
GetPenInfoGets information about the pens used in SOLIDWORKS. ?獲取有關 SOLIDWORKS 中使用的筆的信息。
GetSheetCountGets the number of drawing sheets in this drawing. ?獲取此繪圖中的繪圖頁數。
GetSheetNamesGets a list of the names of the drawing sheets in this drawing. ?獲取此圖紙中圖紙名稱的列表。
GetViewCountGets all of the number of all of?views, including the number of?sheets, in this drawing document. ?獲取此繪圖文檔中所有視圖的所有數量,包括圖紙數量。
GetViewsGets the all of the views, including the?sheets, in this drawing document. ?獲取此繪圖文檔中的所有視圖,包括圖紙。
HideEdgeHides selected visible edges in a drawing document. ?在工程圖文檔中隱藏選定的可見邊。
HideShowDimensionsSets whether to display?suppressed dimensions as dimmed and hide them. ?設置是否將抑制的尺寸顯示為灰色并隱藏它們。
HideShowDrawingViewsSets whether to hide or show hidden drawing views. ?設置是隱藏還是顯示隱藏的工程視圖。
IAddChamferDimAdds a chamfer dimension. ?添加倒角尺寸。
IAddHoleCallout2Adds a?hole callout at the specified position to the hole whose edge is selected. ?將指定位置的孔標注添加到其邊緣被選中的孔中。
ICreateAngDim4Creates a non-associative angular dimension. ?創建非關聯角度尺寸。
ICreateAuxiliaryViewAt2Creates an auxiliary view based on a selected edge in a drawing view. ?基于工程視圖中的選定邊創建輔助視圖。
ICreateDiamDim4Creates a non-associative diameter dimension. ?創建非關聯直徑尺寸。
ICreateLinearDim4Creates a non-associative linear dimension. ?創建非關聯線性標注。
ICreateOrdinateDim4Creates a non-associative ordinate dimension. ?創建非關聯的縱坐標標注。
ICreateSectionViewAt5Creates a section view from the section line?up to the specified distance at the specified distance. ?在指定距離處創建從剖面線到指定距離的剖面視圖。
ICreateText2Creates a?note?containing the specified text at a given location. ?在給定位置創建包含指定文本的注釋。
IEditSelectedGtolGets the?selected GTol to edit. ?獲取要編輯的選定 GTol。
IFeatureByNameGets?the specified feature in the drawing. ?獲取繪圖中的指定特征。
IGetCurrentSheetGets the currently active drawing sheet. ?獲取當前活動的圖紙。
IGetFirstViewGets the first drawing?view?on the current sheet. ?獲取當前圖紙上的第一個繪圖視圖。
IGetInsertionPointGets the current insertion (pick) point in a drawing. ?獲取繪圖中的當前插入(拾取)點。
IGetPenInfoGets information about the pens used in SOLIDWORKS. ?獲取有關 SOLIDWORKS 中使用的筆的信息。
IGetSheetNamesGets a list of the names of the drawing sheets in this drawing. ?獲取此圖紙中圖紙名稱的列表。
IInsertDowelSymbolInserts a dowel pin symbol on the currently selected edge or edges. ?在當前選定的一條或多條邊上插入定位銷符號。
IInsertMultiJogLeader3Inserts a multi-jog leader. ?插入多轉折引線。
IInsertRevisionCloudInserts a revision cloud annotation with the specified shape into a view or sheet. ?將具有指定形狀的修訂云線注釋插入到視圖或圖紙中。
INewGtolCreates a new GTol. ?創建一個新的幾何公差。
InsertAngularRunningDimInserts an angular running dimension into this drawing. ?在此工程圖中插入角度運行尺寸。
InsertBaseDimInserts the base model dimensions into this drawing. ?將基礎模型尺寸插入此工程圖中。
InsertBreakHorizontalInserts a horizontal break in the drawing view. ?在工程視圖中插入水平中斷。
InsertBreakVerticalInserts a vertical break in this drawing. ?在此圖形中插入垂直中斷。
InsertCenterLine2Inserts a centerline on the selected entities. ?在選定實體上插入中心線。
InsertCenterMark3Inserts a center mark in a drawing document. ?在工程圖文檔中插入中心標記。
InsertCircularNotePatternInserts a circular note pattern using the selected?note. ?使用所選筆記插入圓形筆記模式。
InsertDowelSymbolInserts a dowel pin symbol on the currently selected edge or edges in this drawing. ?在此圖形中當前選定的一條或多條邊上插入定位銷符號。
InsertGroupInserts the currently selected items into a group (or view). ?將當前選定的項目插入到一個組(或視圖)中。
InsertHorizontalOrdinateInserts a horizontal ordinate dimension into this drawing. ?在此圖形中插入水平坐標尺寸。
InsertLinearNotePatternInserts a linear note pattern using the selected?note. ?使用選定的音符插入線性音符模式。
InsertModelAnnotations3Inserts model annotations into this drawing document in the currently selected drawing view. ?在當前選定的工程圖視圖中將模型注釋插入到此工程圖文檔中。
InsertModelDimensionsInserts model dimensions into the selected drawing view according to the option specified. ?根據指定的選項將模型尺寸插入選定的工程視圖中。
InsertModelInPredefinedViewInserts the model into the predefined drawing views in the active drawing sheet. ?將模型插入到活動圖紙中的預定義圖紙視圖中。
InsertMultiJogLeader3Inserts a multi-jog leader. ?插入多轉折引線。
InsertNewNote2Creates a new note in this drawing. ?在此繪圖中創建一個新注釋。
InsertOrdinateInserts an ordinate dimension into this drawing. ?在此工程圖中插入縱坐標尺寸。
InsertRefDimInserts reference dimensions in this drawing. ?在此工程圖中插入參考尺寸。
InsertRevisionCloudInserts a revision cloud annotation with the specified shape into a view or sheet. ?將具有指定形狀的修訂云線注釋插入到視圖或圖紙中。
InsertRevisionSymbolInserts a revision symbol note in this drawing. ?在此工程圖中插入修訂符號注釋。
InsertTableAnnotation2Inserts a table annotation in this drawing. ?在此圖形中插入表格注釋。
InsertThreadCalloutInserts a thread callout into this drawing. ?在此圖形中插入螺紋標注。
InsertVerticalOrdinateInserts a vertical ordinate dimension in this drawing. ?在此圖形中插入垂直縱坐標尺寸。
InsertWeldSymbolCreates a weld symbol located at the last edge selection. ?在最后一個邊選擇處創建一個焊接符號。
IReorderSheetsReorders the drawing sheets per their positions in the input array. ?根據它們在輸入數組中的位置對圖紙重新排序。
IsolateChangedDimensionsIsolates changed dimensions. ?隔離更改的尺寸。
LoadLineStylesLoads the specified line styles into the current drawing. ?將指定的線型加載到當前圖形中。
MakeSectionLineMakes a section line from a set of connected sketch lines. ?從一組連接的草圖線制作剖面線。
ModifySurfaceFinishSymbolModifies the selected surface finish symbol. ?修改選定的表面粗糙度符號。
NewGtolCreates a new GTol object and returns the pointer to that object. ?創建一個新的 GTol 對象并返回指向該對象的指針。
NewNoteCreates a new note at the selected location. ?在選定位置創建新筆記。
NewSheet4Creates a new drawing sheet in this drawing document. ?在此工程圖文檔中創建新的工程圖圖紙。
OnComponentPropertiesDisplays the?Component Properties?dialog for the selected view. ?顯示所選視圖的組件屬性對話框。
PasteSheetCopies and pastes a drawing sheet?to the specified location of the drawing document, optionally renaming whenever duplicate names occur. ?將工程圖復制并粘貼到工程圖文檔的指定位置,可以在出現重復名稱時選擇重命名。
ReorderSheetsReorders the drawing sheets per their positions in the input array. ?根據它們在輸入數組中的位置對圖紙重新排序。
ReplaceViewModelReplaces the specified instances of a model in the specified drawing views. ?替換指定工程視圖中模型的指定實例。
ResolveOutOfDateLightWeightComponentsResolves out-of-date lightweight components in the selected drawing view or drawing sheet. ?解決選定工程視圖或工程圖紙中過時的輕化零部件。
RestoreRotationRestores rotation for the selected drawing view. ?恢復選定工程視圖的旋轉。
SaveLineStylesExports to a file the specified line styles in the current drawing. ?將當前圖形中指定的線型導出到文件。
SetCurrentLayerSets the current layer used by this document. ?設置此文檔使用的當前層。
SetLineColorSets the line color for a selected edge or sketch entity. ?設置選定邊線或草圖實體的線條顏色。
SetLineStyleSets the style or font for the line for a selected edge or sketch entity. ?為選定邊線或草圖實體設置線條的樣式或字體。
SetLineWidthSets the line thickness for a selected edge or sketch entity to a SOLIDWORKS-supplied weight (width). ?將選定邊線或草圖實體的線寬設置為 SOLIDWORKS 提供的粗細(寬度)。
SetLineWidthCustomSets the line thickness to the specified custom width for a selected edge or sketch entity. ?將線條粗細設置為選定邊線或草圖實體的指定自定義寬度。
SetSheetsSelectedSets the specified drawing sheets whose setups to modify. ?設置要修改其設置的指定圖紙。
SetupSheet6Sets up?the specified?drawing sheet. ?設置指定的圖紙。
SheetNextMoves to the next sheet in the drawing. ?移動到工程圖中的下一張圖紙。
SheetPreviousReturns to the previous sheet in a drawing. ?返回到工程圖中的上一張圖紙。
ShowEdgeShows the selected hidden edges in a drawing document. ?顯示工程圖文檔中選定的隱藏邊。
SketchDimInserts a sketch dimension in this drawing. ?在此工程圖中插入草圖尺寸。
StartDrawingProvides faster creation of entities within a drawing. ?提供在繪圖中更快地創建實體。
SuppressViewHides the selected drawing view. ?隱藏選定的工程視圖。
TranslateDrawingTranslates the entire drawing. ?翻譯整個繪圖。
UnBreakViewRemoves a break in the selected drawing view. ?刪除選定工程視圖中的中斷。
UnsuppressViewHides the selected drawing view. ?隱藏選定的工程視圖。
ViewDisplayHiddenSets the current display mode?to?Hidden Lines Removed. ?將當前顯示模式設置為隱藏線已刪除。
ViewDisplayHiddengreyedSets the current display mode to?Hidden Lines Visible. ?將當前顯示模式設置為隱藏線可見。
ViewDisplayShadedSets the current display mode to?Shaded. ?將當前顯示模式設置為陰影。
ViewDisplayWireframeSets the current display mode to?Wireframe. ?將當前顯示模式設置為線框。
ViewFullPageFits the drawing to the full page. ?使繪圖適合整頁。
ViewHlrQualityToggles the?Hidden Lines Removed?mode for the drawing view. ?切換繪圖視圖的隱藏線刪除模式。
ViewModelEdgesToggles the mode for viewing model edges when in shaded mode. ?在著色模式下切換查看模型邊緣的模式。
ViewTangentEdgesToggles display of tangent edges in the selected drawing view. ?在選定工程視圖中切換相切邊的顯示。

System.bool ActivateSheet( System.string Name)

This example shows how to copy and paste drawing sheets. //---------------------------------------------------------- // Preconditions: // 1. Open a drawing document containing one sheet // named Sheet1. // 2. Open the Immediate window. // // Postconditions: // 1. Activates Sheet1. // 2. Copy and pastes Sheet1 as Sheet1(2) and activates Sheet1(2). // 3. Copy and pastes Sheet1 as Sheet1(3) and activates Sheet1(3). // 4. Examine the FeatureManager design tree and Immediate window. //---------------------------------------------------------- using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System; using System.Diagnostics;namespace Macro1CSharp.csproj {public partial class SolidWorksMacro{public void Main(){DrawingDoc Part = default(DrawingDoc);ModelDoc2 swModel = default(ModelDoc2);bool boolstatus = false;swModel = (ModelDoc2)swApp.ActiveDoc;Part = (DrawingDoc)swModel;if ((Part == null)){Debug.Print(" Please open a drawing document. ");return;}Sheet currentsheet = default(Sheet);currentsheet = (Sheet)Part.GetCurrentSheet();Part.ActivateSheet(currentsheet.GetName());Debug.Print("Active sheet: " + currentsheet.GetName());boolstatus = swModel.Extension.SelectByID2("Sheet1", "SHEET", 0.09205356547875, 0.10872368523, 0, false, 0, null, 0);swModel.EditCopy();boolstatus = Part.PasteSheet((int)swInsertOptions_e.swInsertOption_BeforeSelectedSheet, (int)swRenameOptions_e.swRenameOption_No);currentsheet = (Sheet)Part.GetCurrentSheet();Part.ActivateSheet(currentsheet.GetName());Debug.Print("Active sheet: " + currentsheet.GetName());boolstatus = swModel.Extension.SelectByID2("Sheet1", "SHEET", 0.09205356547875, 0.10872368523, 0, false, 0, null, 0);swModel.EditCopy();boolstatus = Part.PasteSheet((int)swInsertOptions_e.swInsertOption_AfterSelectedSheet, (int)swRenameOptions_e.swRenameOption_No);currentsheet = (Sheet)Part.GetCurrentSheet();Part.ActivateSheet(currentsheet.GetName());Debug.Print("Active sheet: " + currentsheet.GetName());}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} } This example shows how to determine which sheets in a drawing are loaded.//---------------------------------------------- // Preconditions: // 1. Click File > Open. // 2. Browse to public_documents\samples\tutorial\advdrawings. // 3. Select foodprocessor.slddrw. // 4. Click Select sheets to open > Selected > Sheet1* (Load) > OK > Open. // 5. Open the Immediate window. // // Postconditions: // 1. Loads Sheet1 only. // 2. Mouse over the Sheet2, Sheet3, and Sheet4 tabs and // examine the Immediate window to verify step 1. // // NOTE: Because this drawing is used elsewhere, do not save // changes. //----------------------------------------------using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System; using System.Diagnostics; namespace IsLoadedSheetCSharp.csproj {partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel = default(ModelDoc2);DrawingDoc swDraw = default(DrawingDoc);object[] vSheetName = null;int i = 0;bool bRet = false;string sheetName;swModel = (ModelDoc2)swApp.ActiveDoc;swDraw = (DrawingDoc)swModel;// Get the sheets in the drawing document vSheetName = (object[])swDraw.GetSheetNames(); // Traverse the sheets and determine whether // they're loaded for (i = 0; i < vSheetName.Length; i++){sheetName = (string)vSheetName[i];bRet = swDraw.ActivateSheet(sheetName);Sheet swSheet = default(Sheet);swSheet = (Sheet)swDraw.GetCurrentSheet();if ((swSheet.IsLoaded())){Debug.Print(vSheetName[i] + " is loaded.");}else{Debug.Print(vSheetName[i] + " is not loaded.");}}}/// <summary> /// The SldWorks swApp variable is pre-assigned for you. /// </summary> public SldWorks swApp;} }

System.bool ActivateView( System.string ViewName)

This example demonstrates firing Undo pre- and post-notification events in a drawing document.//--------------------------------------------------------------------------- // Preconditions: Open public_documents\samples\tutorial\AutoCAD\7550-021.slddrw. // // Postconditions: // 1. Selects and deletes the note in Drawing View1. // 2. Undoes the deleted note. // 3. Fires pre-notification event indicating that an undo action is about to // occur and fires post-notification event indicating that an undo // action occurred. // 4. Click OK to close each message box. // // NOTE: Because the drawing is used elsewhere, do not save changes. //---------------------------------------------------------------------------using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System; using System.Collections; using System.Windows.Forms;namespace UndoPostNotifyDrawingCSharp.csproj { partial class SolidWorksMacro {public DrawingDoc swDrawing;public void Main(){ModelDoc2 swModel = default(ModelDoc2);ModelDocExtension swModelDocExt = default(ModelDocExtension);bool boolstatus = false;Hashtable openDrawing = default(Hashtable);swModel = (ModelDoc2)swApp.ActiveDoc;swModelDocExt = (ModelDocExtension)swModel.Extension; // Event notification swDrawing = (DrawingDoc)swModel;openDrawing = new Hashtable();AttachEventHandlers(); // Activate the drawing view that contains // the note you want to delete boolstatus = swDrawing.ActivateView("Drawing View3");boolstatus = swModelDocExt.SelectByID2("DetailItem77@Drawing View3", "NOTE", 0.3058741216774, 0.1870419466786, 0, false, 0, null, 0); // Delete the selected note swModel.EditDelete(); // Undo deletion of note swModel.EditUndo2(1); // Post-notification is fired // Rebuild the drawing swModel.ForceRebuild3(true);} public void AttachEventHandlers(){AttachSWEvents();}public void AttachSWEvents(){swDrawing.UndoPostNotify += this.swDrawing_UndoPostNotify;swDrawing.UndoPreNotify += this.swDrawing_UndoPreNotify;} private int swDrawing_UndoPostNotify(){// Display message after Undo// NOTE: Because the message box may be displayed // behind an opened window, you might not see it. // If so, then check the Taskbar. MessageBox.Show("An undo post-notification event has been fired.");return 1;} private int b(){// Display message after Undo// NOTE: Because the message box may be displayed // behind an opened window, you might not see it. // If so, then check the Taskbar. MessageBox.Show("An Undo pre-notification event has been fired.");return 1;} /// <summary> /// The SldWorks swApp variable is pre-assigned for you. /// </summary> public SldWorks swApp; } } //This example shows how to automatically insert a model's dimensions marked for drawings //into a drawing.//--------------------------------------------------------------------------- // Preconditions: // 1. Assembly document to open exists. // 2. Run the macro. // // Postconditions: // 1. A new drawing document is opened. // 2. A drawing view of the assembly document is created. // 3. The dimensions in the assembly document that are marked for drawings, // including any duplicate dimensions, appear in the drawing view. // 4. The dimensions in the drawing, which are annotations, // are selected and marked. //--------------------------------------------------------------------------- using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System;namespace SelectAnnotationsCSharp.csproj {public partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel;ModelDocExtension swModelDocExt;DrawingDoc swDrawing;SelectionMgr swSelmgr;View swView;object[] annotations;object selAnnot;Annotation swAnnotation;SelectData swSelData;int mark;string retval;bool status;retval = swApp.GetUserPreferenceStringValue((int)swUserPreferenceStringValue_e.swDefaultTemplateDrawing);swModel = (ModelDoc2)swApp.NewDocument(retval, 0, 0, 0);swDrawing = (DrawingDoc)swModel;swModelDocExt = (ModelDocExtension)swModel.Extension;swSelmgr = (SelectionMgr)swModel.SelectionManager;// Create drawing from assemblyswView = (View)swDrawing.CreateDrawViewFromModelView3("C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\wrench.sldasm", "*Front", 0.1314541543147, 0.1407887187817, 0);// Select and activate the viewstatus = swModelDocExt.SelectByID2("Drawing View1", "DRAWINGVIEW", 0, 0, 0, false, 0, null, 0);status = swDrawing.ActivateView("Drawing View1");swModel.ClearSelection2(true);// Insert the annotations marked for the drawingannotations = (object[])swDrawing.InsertModelAnnotations3((int)swImportModelItemsSource_e.swImportModelItemsFromEntireModel, (int)swInsertAnnotation_e.swInsertDimensionsMarkedForDrawing, true, false, false, false);// Select and mark each annotationswSelData = swSelmgr.CreateSelectData();mark = 0;foreach (object annot in annotations){selAnnot = annot;swAnnotation = (Annotation)selAnnot;status = swAnnotation.Select3(true, swSelData);swSelData.Mark = mark;mark = mark + 1;}}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.bool AttachAnnotation( System.int Option)

//This example shows how to attach an existing annotation to a drawing view.//---------------------------------------------------------------------------- // Preconditions: Open public_documents\samples\tutorial\api\replaceview.slddrw. // // Postconditions: // 1. Inserts a note annotation n the drawing. // 2. Selects the annotation. // 3. Appends a face in a drawing view to the selection list. // 4. Attaches the annotation to the selected face. // 5. Examine the drawing. // 6. Close the drawing without saving it. // --------------------------------------------------------------------------- using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System; namespace AttachAnnotation_CSharp.csproj {partial class SolidWorksMacro{ModelDoc2 part;DrawingDoc draw;Note aNote;Annotation anAnnot;SelectData selectData = null;int ret;bool boolstatus;public void Main(){part = (ModelDoc2)swApp.ActiveDoc;draw = (DrawingDoc)part;boolstatus = draw.ActivateSheet("Sheet1");aNote = (Note)draw.CreateText2("This is a note.", 0.21, 0.12, 0, 0.005, 0);anAnnot = (Annotation)aNote.GetAnnotation();ret = anAnnot.SetLeader3(swLeaderStyle_e.swBENT, swLeaderSide_e.swLS_SMART, true, false, false, false);anAnnot.Select3(false, selectData);boolstatus = draw.ActivateView("Drawing View1");boolstatus = part.Extension.SelectByID2("", "FACE", 0.0783563575357558, 0.17448024010205, -499.965138294658, true, 0, null, 0);draw.AttachAnnotation(swAttachAnnotationOption_e.swAttachAnnotationOption_View);}public SldWorks swApp;} }

System.object AutoBalloon5( AutoBalloonOptions BalloonOptions)

//This example shows how to automatically add BOM balloons to a drawing view.//------------------------------------------------------------------------------ // Preconditions: Open a drawing with a bill of materials (BOM) table. // // Postconditions: BOM balloons are added to the view. //------------------------------------------------------------------------------ using Microsoft.VisualBasic; using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Diagnostics; using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; namespace AutoBalloon_CSharp.csproj {partial class SolidWorksMacro{ModelDoc2 Part;DrawingDoc Draw;object vNotes;AutoBalloonOptions autoballoonParams;bool boolstatus;public void Main(){Part = (ModelDoc2)swApp.ActiveDoc;Draw = (DrawingDoc)Part;boolstatus = Draw.ActivateView("Drawing View1");boolstatus = Part.Extension.SelectByID2("Drawing View1", "DRAWINGVIEW", 0, 0, 0, false, 0, null, 0);autoballoonParams = Draw.CreateAutoBalloonOptions();autoballoonParams.Layout = (int)swBalloonLayoutType_e.swDetailingBalloonLayout_Square;autoballoonParams.ReverseDirection = false;autoballoonParams.IgnoreMultiple = true;autoballoonParams.InsertMagneticLine = true;autoballoonParams.LeaderAttachmentToFaces = true;autoballoonParams.Style = (int)swBalloonStyle_e.swBS_Circular;autoballoonParams.Size = (int)swBalloonFit_e.swBF_5Chars;autoballoonParams.UpperTextContent = (int)swBalloonTextContent_e.swBalloonTextItemNumber;autoballoonParams.Layername = "-None-";autoballoonParams.ItemNumberStart = 1;autoballoonParams.ItemNumberIncrement = 1;autoballoonParams.ItemOrder = (int)swBalloonItemNumbersOrder_e.swBalloonItemNumbers_DoNotChangeItemNumbers;autoballoonParams.EditBalloons = true;autoballoonParams.EditBalloonOption = (int)swEditBalloonOption_e.swEditBalloonOption_Resequence;vNotes = Draw.AutoBalloon5(autoballoonParams);}public SldWorks swApp;} }

System.int AutoDimension(?
? ?System.int EntitiesToDimension,
? ?System.int HorizontalScheme,
? ?System.int HorizontalPlacement,
? ?System.int VerticalScheme,
? ?System.int VerticalPlacement)

//This example shows how to autodimension a selected drawing view.//----------------------------------------------------------------- // Preconditions: Verify that the specified drawing document to // open exists. // // Postconditions: // 1. Opens the specified drawing document. // 2. Activates Drawing View1. // 3. Selects a vertex. // 4. Autodimensions the drawing view based on the // selected vertex. // 5. Examine the drawing. // // NOTE: Because the drawing is used elsewhere, do not save changes. //------------------------------------------------------------------ using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System;namespace AutodimensionCSharp.csproj {public partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel = default(ModelDoc2);DrawingDoc swDrawing = default(DrawingDoc);ModelDocExtension swModelDocExt = default(ModelDocExtension);bool status = false;string fileName = null;int errors = 0;int warnings = 0;int selmark = 0;int ret = 0;// Open drawing document of partfileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\advdrawings\\foodprocessor.slddrw";swModel = (ModelDoc2)swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);swDrawing = (DrawingDoc)swModel;status = swDrawing.ActivateView("Drawing View1");swModelDocExt = (ModelDocExtension)swModel.Extension;// Select drawing viewstatus = swModelDocExt.SelectByID2("Drawing View1", "DRAWINGVIEW", 0, 0, 0, false, 0, null, 0);// Horizontal and vertical datum, or a vertex datum, baselines for// dimension creation// These are optional; if not selected, autodimension uses default datums,// the leftmost and bottommost edgesselmark = (int)swAutodimMark_e.swAutodimMarkHorizontalDatum;selmark = (int)swAutodimMark_e.swAutodimMarkVerticalDatum;selmark = (int)swAutodimMark_e.swAutodimMarkOriginDatum;// Select a vertexstatus = swModelDocExt.SelectByID2("", "VERTEX", 0.20215546544586, 0.2496899375, 0.00479999999998881, true, selmark, null, 0);// Autodimensions the drawing view based on the selected vertexret = swDrawing.AutoDimension((int)swAutodimEntities_e.swAutodimEntitiesBasedOnPreselect, (int)swAutodimScheme_e.swAutodimSchemeBaseline, (int)swAutodimHorizontalPlacement_e.swAutodimHorizontalPlacementAbove, (int)swAutodimScheme_e.swAutodimSchemeBaseline, (int)swAutodimVerticalPlacement_e.swAutodimVerticalPlacementRight);}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

void BreakView()

//This example shows how to create and remove a broken view.//---------------------------------------------------------------------------- // Preconditions: // 1. Verify that the specified file to open exists. // 2. Open the Immediate window. // // Postconditions: // 1. Opens the specified drawing and selects Drawing View1. // 2. Examine the drawing, then press F5. // 3. Inserts break lines in Drawing View1. // 4. Examine the drawing, then press F5. // 5. Modifies the positions of the break lines and breaks the view. // 6. Examine the drawing, then press F5. // 7. Removes the break from Drawing View1. // 8. Examine the drawing and the Immediate window. // // NOTE: Because this drawing document is used elsewhere, // do not save changes. //---------------------------------------------------------------------------- using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System; using System.Diagnostics;namespace BreakViewDrawingDocCSharp.csproj {public partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel;DrawingDoc swDrawingDoc;ModelDocExtension swModelDocExt;SelectionMgr swSelectionManager;SelectData swSelectData;View swView;BreakLine swBreakLine;string fileName;bool status;int errors = 0;int warnings = 0;fileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\box.slddrw";swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);swModel = (ModelDoc2)swApp.ActiveDoc;swDrawingDoc = (DrawingDoc)swModel;swModelDocExt = (ModelDocExtension)swModel.Extension;// Activate and select the view to breakstatus = swDrawingDoc.ActivateView("Drawing View1");status = swModelDocExt.SelectByID2("Drawing View1", "DRAWINGVIEW", 0, 0, 0, false, 0, null, 0);swSelectionManager = (SelectionMgr)swModel.SelectionManager; swSelectData = (SelectData)swSelectionManager.CreateSelectData();swView = (View)swSelectionManager.GetSelectedObject6(1, -1);System.Diagnostics.Debugger.Break();// Examine the drawing; press F5// Insert the break linesswBreakLine = (BreakLine)swView.InsertBreak(0, -0.0291950859897372, 0.0198236302285804, 1);System.Diagnostics.Debugger.Break();// Break lines inserted; press F5// Reset position of break linesstatus = swBreakLine.SetPosition(-0.03, 0.05);swModel.EditRebuild3Debug.Print("Break line: ");Debug.Print(" Selected: " + swBreakLine.Select(true, null));Debug.Print(" Style: " + swBreakLine.Style);Debug.Print(" Orientation: " + swBreakLine.Orientation);Debug.Print(" Position: " + swBreakLine.GetPosition(0));swDrawingDoc.BreakView();System.Diagnostics.Debugger.Break();// Positions of the break lines are modified, and view is broken// Press F5status = swModelDocExt.SelectByID2("Drawing View1", "DRAWINGVIEW", 0, 0, 0, false, 0, null, 0);swDrawingDoc.UnBreakView();// Break is removed}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

void ChangeComponentLayer(?
? ?System.string Layername,
? ?System.bool AllViews)

This example shows how to create a layer for the part in the selected drawing view.'---------------------------------------------------------------------------- ' Preconditions: ' 1. Open a drawing of a part. ' 2. Select a drawing view in the FeatureManager design tree. ' 3. Open the Immediate window. ' ' Postconditions: ' 1. Creates a layer for the part in the selected drawing view. ' 2. Click the Layer Properties tool on the Line Format toolbar to verify ' that the newly created layer is selected in the Layers dialog box. ' 3. Examine the Immediate window. '---------------------------------------------------------------------------- Option ExplicitPrivate Sub ChangeComponentLayer _ ( _swApp As SldWorks.SldWorks, _swDraw As SldWorks.DrawingDoc, _sLayerName As String _ )Dim bRet As Boolean' Form a valid layer namesLayerName = Replace(sLayerName, "/", "_")sLayerName = Replace(sLayerName, "@", "_")bRet = swDraw.CreateLayer2( _sLayerName, _"Layer for part in " & sLayerName, _0, swLineCONTINUOUS, swLW_NORMAL, True, True)' Change in all drawing viewsswDraw.ChangeComponentLayer sLayerName, TrueEnd SubSub main()Dim swApp As SldWorks.SldWorksDim swModel As SldWorks.ModelDoc2Dim swDraw As SldWorks.DrawingDocDim swSelMgr As SldWorks.SelectionMgrDim swView As SldWorks.ViewDim swDrawModel As SldWorks.ModelDoc2Dim swDrawPart As SldWorks.PartDocDim vBody As VariantDim swBody As SldWorks.Body2Dim swFace As SldWorks.Face2Dim swEnt As SldWorks.EntityDim nErrors As LongDim nWarnings As LongDim bRet As BooleanSet swApp = Application.SldWorksSet swModel = swApp.ActiveDocSet swDraw = swModelSet swSelMgr = swModel.SelectionManagerSet swView = swSelMgr.GetSelectedObject6(1, -1)Set swDrawModel = swApp.OpenDoc6(swView.GetReferencedModelName, swDocPART, swOpenDocOptions_Silent, "", nErrors, nWarnings)Set swDrawPart = swDrawModelDebug.Print "File = " & swModel.GetPathNameDebug.Print " View = " & swView.NameDebug.Print " View Model = " & swView.GetReferencedModelNamevBody = swDrawPart.GetBodies2(swSolidBody, True)Set swBody = vBody(0)Set swFace = swBody.GetFirstFaceSet swEnt = swFacebRet = swView.SelectEntity(swEnt, False)ChangeComponentLayer swApp, swDraw, swView.NameEnd Sub

System.object CreateDetailViewAt4(?
? ?System.double X,
? ?System.double Y,
? ?System.double Z,
? ?System.int Style,
? ?System.double Scale1,
? ?System.double Scale2,
? ?System.string LabelIn,
? ?System.int Showtype,
? ?System.bool FullOutline,
? ?System.bool JaggedOutline,
? ?System.bool NoOutline,
? ?System.int ShapeIntensity)

//This example shows how to create a detail circle and a detail view.//--------------------------------------------------------------------------- // Preconditions: // 1. Verify that the drawing to open exists. // 2. Open the Immediate window. // // Postconditions: // 1. Opens the specified drawing. // 2. Activates Drawing View4. // 3. Creates a detail circle and a detail view using the visible // corner of Drawing View4. // 4. Activates the detail view. // 5. Gets and sets some properties of the detail circle and detail view. // 6. Examine the drawing document and Immediate window. // // NOTE: Because the drawing is used elsewhere, do not save changes. //------------------------------------------------------------------------------ using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System; using System.Diagnostics;namespace Macro1CSharp.csproj {partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel = default(ModelDoc2);DrawingDoc swDrawing = default(DrawingDoc);SketchManager swSketchManager = default(SketchManager);SketchSegment swSketchSegment = default(SketchSegment);View swView = default(View);DetailCircle swDetailCircle = default(DetailCircle);SelectionMgr swSelMgr = default(SelectionMgr);SelectData swSelData = default(SelectData);string fileName = null;bool status = false;int errors = 0;int warnings = 0;// Open drawingfileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\replaceview.slddrw";swModel = (ModelDoc2)swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);swDrawing = (DrawingDoc)swModel;swSelMgr = (SelectionMgr)swModel.SelectionManager;swSelData = (SelectData)swSelMgr.CreateSelectData();swApp.ActivateDoc3("replaceview - Sheet1", false, (int)swRebuildOnActivation_e.swDontRebuildActiveDoc, ref errors);// Activate Drawing View4 and create detail circle and detail viewstatus = swDrawing.ActivateView("Drawing View4");swSketchManager = (SketchManager)swModel.SketchManager;swSketchSegment = (SketchSegment)swSketchManager.CreateCircle(0.007581, 0.053509, 0.0, 0.013533, 0.016475, 0.0);swView = (View)swDrawing.CreateDetailViewAt4(0.22305342706156, 0.0762140266484527, 0, (int)swDetViewStyle_e.swDetViewSTANDARD, 1, 1, "A", (int)swDetCircleShowType_e.swDetCircleCIRCLE, true, true, false, 5);swModel.ClearSelection2(true);// Activate detail viewstatus = swDrawing.ActivateView("Drawing View5");// Get and set some properties of detail circle and detail viewswDetailCircle = (DetailCircle)swView.GetDetail();Debug.Print("Detail circle:");Debug.Print(" Selected: " + swDetailCircle.Select(true, null));Debug.Print(" Label: " + swDetailCircle.GetLabel());Double xpos;Double ypos;swDetailCircle.GetLabelPosition(out xpos, out ypos);Debug.Print(" Label X position: " + xpos);Debug.Print(" Label Y position: " + ypos);Debug.Print(" Type of circle: " + swDetailCircle.GetDisplay());Debug.Print(" Name: " + swDetailCircle.GetName());Debug.Print(" Style: " + swDetailCircle.GetStyle());Debug.Print(" Default document text formatting? " + swDetailCircle.GetUseDocTextFormat());if (swDetailCircle.NoOutline == false){Debug.Print(" No outline? False");if (swDetailCircle.JaggedOutline == true){swDetailCircle.ShapeIntensity = 2;Debug.Print(" Jagged outline and shape intensity? True and 2");} } }/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.bool CreateBreakOutSection(?
? ?System.double Depth)

//This example shows how to create a broken-out section in a drawing view.//---------------------------------------------------------------------------- // Preconditions: // 1. Open a drawing. // 2. Select Drawing View1. // // Postconditions: A broken-out section is created in Drawing View1 // using the specified closed spline. // --------------------------------------------------------------------------- using Microsoft.VisualBasic; using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Diagnostics; using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; namespace CreateBreakOutSection_CSharp.csproj {partial class SolidWorksMacro{ModelDoc2 Part;object pointArray;double[] points = new double[12];SketchSegment skSegment;SelectData selectData = null;DrawingDoc dDoc;public void Main(){Part = (ModelDoc2)swApp.ActiveDoc;points[0] = -0.0544316967839374;points[1] = 0.0413619530906299;points[2] = 0;points[3] = 0.0530556603589196;points[4] = 0.0413619530906299;points[5] = 0;points[6] = 0.00783232107320536;points[7] = 0.00720299635749822;points[8] = 0;points[9] = -0.0544316967839374;points[10] = 0.0413619530906299;points[11] = 0;pointArray = points;skSegment = Part.SketchManager.CreateSpline((pointArray));skSegment.Select4(true, selectData);dDoc = (DrawingDoc)Part;dDoc.CreateBreakOutSection(0.00254);Part.ClearSelection2(true);}public SldWorks swApp;}}

View CreateRelativeView(?
? ?System.string ModelName,
? ?System.double XPos,
? ?System.double YPos,
? ?System.int ViewDirFront,
? ?System.int ViewDirRight)

//This example shows how to create a relative drawing view.// ****************************************************************************** // Preconditions: // 1. Open public_documents\samples\tutorial\api\maingrip.sldprt. // 2. Select File > Make Drawing from Part. // 3. Run the macro. // // Postconditions: // 1. Iterates through the drawing views // in the View Palette and drops // *Current drawing view in the drawing. // 2. Activates the part. // 3. Selects two faces for the relative drawing view. // 4. Activates the drawing. // 5. Creates and inserts a relative drawing // view using the selected faces. // // NOTE: Because the part document is used elsewhere, do not // save any changes when closing it. // ******************************************************************************using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System;namespace CreateRelativeViewCSharp.csproj {partial class SolidWorksMacro{ModelDoc2 swModel;DrawingDoc swDrawing;View swView;ModelDocExtension swModelDocExt;string fileName;bool status;int errors;int warnings;int numViews;object[] viewNames;string viewName;string viewPaletteName;int i;public void Main(){swDrawing = (DrawingDoc)swApp.ActiveDoc;// Get number of views on View PalettenumViews = 0;viewNames = (object[])swDrawing.GetDrawingPaletteViewNames();// Iterate through views on View Palette// When view name equals *Current, drop// that view in drawingif (!((viewNames == null))){numViews = (viewNames.GetUpperBound(0) - viewNames.GetLowerBound(0));for (i = 0; i <= numViews; i++){viewPaletteName = (string)viewNames[i];if ((viewPaletteName == "*Current")){swView = (View)swDrawing.DropDrawingViewFromPalette2(viewPaletteName, 0.0, 0.0, 0.0);}}}// Activate the part document and// select two faces for the relative drawing viewswApp.ActivateDoc3("maingrip.sldprt", false, (int)swRebuildOnActivation_e.swUserDecision, ref errors);swModel = (ModelDoc2)swApp.ActiveDoc;swModelDocExt = (ModelDocExtension)swModel.Extension;swModel.ClearSelection2(true);status = swModelDocExt.SelectByID2("", "FACE", 0.0466263268498324, 0.00558799999987514, -0.00617351393179888, false, 1, null, 0);status = swModelDocExt.SelectByID2("", "FACE", 0.0504738910727269, 0.00167315253537481, -0.00496149996774875, true, 2, null, 0);// Activate the drawing document// Create and insert the relative drawing view using// the selected faces// Activate the relative drawing viewswApp.ActivateDoc3("maingrip - Sheet1", false, (int)swRebuildOnActivation_e.swUserDecision, ref errors);swDrawing = (DrawingDoc)swApp.ActiveDoc;fileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\maingrip.sldprt";swView = (View)swDrawing.CreateRelativeView(fileName, 0.203608914116486, 0.493530187561698, (int)swRelativeViewCreationDirection_e.swRelativeViewCreationDirection_FRONT, (int)swRelativeViewCreationDirection_e.swRelativeViewCreationDirection_RIGHT);status = swDrawing.ActivateView("Drawing View2");}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

View CreateSectionViewAt5(?
? ?System.double X,
? ?System.double Y,
? ?System.double Z,
? ?System.string SectionLabel,
? ?System.int Options,
? ?System.object ExcludedComponents,
? ?System.double SectionDepth)

//This example creates a section view and sets and gets some of the section view's data.//-------------------------------------------------------------------------- // Preconditions: // 1. Open public_documents\samples\tutorial\driveworksxpress\mobile gantry.slddrw // 2. Open the Immediate window. // // Postconditions: // 1. Creates a section view of Drawing View4. // 2. Sets and gets some section view settings. // 3. Examine the drawing and the Immediate window. // // NOTE: Because this drawing is used elsewhere, do not save changes. //-------------------------------------------------------------------------- using System; using System.Diagnostics; using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices;namespace CreateSectionView_CSharp.csproj {partial class SolidWorksMacro{ModelDoc2 swModel;DrawingDoc swDrawing;SketchManager swSketchMgr;SketchSegment swSketchSegment;object excludedComponents;View swView;DrSection swSectionView;bool boolstatus;public void Main(){swModel = (ModelDoc2)swApp.ActiveDoc;swDrawing = (DrawingDoc)swModel;// Activate the view for which you want to create a section viewboolstatus = swDrawing.ActivateView("Drawing View4");swModel.ClearSelection2(true);// Create section-view lineswSketchMgr = swModel.SketchManager;swSketchSegment = swSketchMgr.CreateLine(-1.383705, 2.078706, 0.0, 2.747162, 0.0441, 0.0);// Create the section view at the specified coordinates// and up to the specified distance from the section-view lineexcludedComponents = null;swView = swDrawing.CreateSectionViewAt5(0.1604082711061, 0.2048687170364, 0, "D", 32, (excludedComponents), 0.00835);Debug.Print("View data: ");Debug.Print(" Emphasize outlines of section views? " + swView.EmphasizeOutline);swSectionView = (DrSection)swView.GetSection();// Set some section-view settingsswSectionView.SetAutoHatch(true);swSectionView.SetLabel2("ABCD");swSectionView.SetDisplayOnlySurfaceCut(false);swSectionView.SetPartialSection(false);swSectionView.SetReversedCutDirection(false);swSectionView.SetScaleWithModelChanges(true);swSectionView.CutSurfaceBodies = true;swSectionView.DisplaySurfaceBodies = true;swSectionView.ExcludeSliceSectionBodies = false;// Get some section-view settingsDebug.Print("Section view data: ");Debug.Print(" Label: " + swSectionView.GetLabel());Debug.Print(" Name of section line: " + swSectionView.GetName());Debug.Print(" Depth: " + swSectionView.SectionDepth * 1000.0 + " mm");Debug.Print(" Cut direction reversed from default direction? " + swSectionView.GetReversedCutDirection());Debug.Print(" Partial section cut? " + swSectionView.GetPartialSection());Debug.Print(" Display only the surface cut by the section line? " + swSectionView.GetDisplayOnlySurfaceCut());Debug.Print(" Display surface bodies? " + swSectionView.DisplaySurfaceBodies);Debug.Print(" Exclude slice section bodies? " + swSectionView.ExcludeSliceSectionBodies);swSectionView.SetDisplayOnlySpeedPakBodies(true);Debug.Print(" Display only SpeedPak bodies? " + swSectionView.GetDisplayOnlySpeedPakBodies());Debug.Print(" Scale with model changes? " + swSectionView.GetScaleWithModelChanges());Debug.Print(" Auto-hatch enabled? " + swSectionView.GetAutoHatch());Debug.Print(" Hide cut surface bodies? " + swSectionView.CutSurfaceBodies);swModel.EditRebuild3();}public SldWorks swApp;} }

View CreateUnfoldedViewAt3(?
? ?System.double X,
? ?System.double Y,
? ?System.double Z,
? ?System.bool NotAligned)

//This example shows how to create an unfolded view from an existing view.//---------------------------------------------------------------------------- // Preconditions: Open: // public_documents\samples\tutorial\advdrawings\foodprocessor.slddrw // // Postconditions: A new unfolded view is created from Drawing View1. // // NOTE: Because the model is used elsewhere, // do not save changes when closing it. // --------------------------------------------------------------------------- using Microsoft.VisualBasic; using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Diagnostics; using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; namespace InsertUnfoldedView_CSharp.csproj {partial class SolidWorksMacro{ModelDoc2 Part;DrawingDoc ddoc;View myView;bool boolstatus;public void Main(){Part = (ModelDoc2)swApp.ActiveDoc;ddoc = (DrawingDoc)Part;boolstatus = Part.Extension.SelectByID2("Drawing View1", "DRAWINGVIEW", 0, 0, 0, false, 0, null, 0);myView = ddoc.CreateUnfoldedViewAt3(0.379074752406062, 0.276482735105582, 0, false);}public SldWorks swApp;} }

System.bool DrawingViewRotate(?
? ?System.double NewAngle)

This example shows how to rotate the selected drawing view 45o.//--------------------------------------------------------------- // Preconditions: Verify that the specified file to open exists. // // Postconditions: Rotates the selected drawing view 45o. //---------------------------------------- ----------------------using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System;namespace DrawingViewRotateCSharp.csproj {partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel = default(ModelDoc2);ModelDocExtension swModelDocExt = default(ModelDocExtension);DrawingDoc swDrawing = default(DrawingDoc);bool status = false;int errors = 0;int warnings = 0;swModel = (ModelDoc2)swApp.OpenDoc6("C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\driveworksxpress\\mobile gantry.slddrw", (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);swModelDocExt = (ModelDocExtension)swModel.Extension;swModel.ViewZoomtofit2();swDrawing = (DrawingDoc)swModel;status = swDrawing.ActivateView("Drawing View4");status = swModelDocExt.SelectByID2("Drawing View4", "DRAWINGVIEW", 0.1122300799499, 0.1471819585104, 0, false, 0, null, 0);//Convert degrees to radians, the default system unit // 1 radian = 180o/p = 57.295779513o or approximately 57.3o status = swDrawing.DrawingViewRotate(45 / 57.3);}/// <summary> /// The SldWorks swApp variable is pre-assigned for you. /// </summary> public SldWorks swApp;}}

View DropDrawingViewFromPalette2(?
? ?System.string PaletteViewName,
? ?System.double X,
? ?System.double Y,
? ?System.double Z)

//This example shows how to get the number of lines in a flat-pattern drawing view's //boundary-box sketch.//---------------------------------------------------------- // Preconditions: // 1. Open public_documents\samples\tutorial\api\SMGussetAPI.SLDPRT. // 2. Create a new drawing document. // 3. Select SMGussetAPI.SLDPRT in the View // Palette's dropdown list box. // 4. Open the Immediate window. // // Postconditions: // 1. Examine the Immediate window and the drawing. // 2. If necessary, drag the drawing onto the drawing sheet // and zoom in on the drawing view. // // NOTE: Because the part is used elsewhere, do not save // changes. //--------------------------------------------------------- using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System; using System.Diagnostics;namespace GetSMBoundaryBoxDisplayDataViewCSharp.csproj {partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel;DrawingDoc swDrawing;View swView;Sheet swSheet;DisplayData swDisplayData;double[] sheetProperties = null;double sheetScale = 0;swDwgPaperSizes_e paperSize;double width = 0;double height = 0;long numViews = 0;object[] viewNames = null;string viewPaletteName = "";string drawingViewName = "";int i = 0;bool status = false;swModel = (ModelDoc2)swApp.ActiveDoc;swDrawing = (DrawingDoc)swModel;// Get current sheet swSheet = (Sheet)swDrawing.GetCurrentSheet();sheetProperties = (double[])swSheet.GetProperties();sheetScale = (double)sheetProperties[2] / sheetProperties[3];paperSize = (swDwgPaperSizes_e)swSheet.GetSize(ref width, ref height);// Get number of views on View Palette numViews = 0;viewNames = (object[])swDrawing.GetDrawingPaletteViewNames();// Iterate through views on View Palette // When view name equals "Flat pattern", drop // that view in drawing if (!((viewNames == null))){numViews = viewNames.GetUpperBound(0) - viewNames.GetLowerBound(0);for (i = 0; i <= numViews; i++){viewPaletteName = (string)viewNames[i];if ((viewPaletteName == "Flat pattern")){Debug.Print("Dropping View Palette view named: " + viewPaletteName);swView = (View)swDrawing.DropDrawingViewFromPalette2(viewPaletteName, 0.0, 0.0, 0.0);drawingViewName = swView.GetName2();Debug.Print("Dropped View Palette view into drawing view named: " + drawingViewName);}}}// Activate view and get number of lines in // its boundary box sketch status = swDrawing.ActivateView(drawingViewName);swView = (View)swDrawing.ActiveDrawingView;swDisplayData = (DisplayData)swView.GetSMBoundaryBoxDisplayData();Debug.Print("Number of lines in boundary box of flat-pattern drawing view: " + swDisplayData.GetLineCount());}/// <summary> /// The SldWorks swApp variable is pre-assigned for you. /// </summary> public SldWorks swApp;}}

void EditSheet()

This example shows how to place a note behind a drawing sheet.//---------------------------------------------------------- // Preconditions: // 1. Verify that the specified drawing file to open exists. // 2. Open the Immediate window. // // Postconditions: // 1. Places the selected note, 2012-sm in the drawing template, // behind the drawing sheet. // 2. To verify: // a. Examine the Immediate window. // b. Right-click the drawing and click // Edit Sheet Format. // c. Right-click 2012-sm and examine the // the short-cut menu to verify that Display // Note Behind Sheet is selected. // d. Exit drawing sheet edit mode. // // NOTE: Because this drawing is used elsewhere, do not // save changes. //-----------------------------------------------------------using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System; using System.Diagnostics;namespace NoteBehindSheetCSharp.csproj { partial class SolidWorksMacro{ public void Main(){ModelDoc2 swModel = default(ModelDoc2);ModelDocExtension swModelDocExt = default(ModelDocExtension);DrawingDoc swDrawing = default(DrawingDoc);SelectionMgr swSelectionMgr = default(SelectionMgr);Note swNote = default(Note);string fileName = null;bool status = false;int errors = 0;int warnings = 0;// Open drawingfileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\2012-sm.slddrw";swModel = (ModelDoc2)swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);swDrawing = (DrawingDoc)swModel;// Put drawing template and sheet in edit modeswModelDocExt = (ModelDocExtension)swModel.Extension;status = swModelDocExt.SelectByID2("Sheet1", "SHEET", 0.0399580396732789, 0.20594194865811, 0, false, 0, null, 0);swDrawing.EditTemplate();swDrawing.EditSheet();swModel.ClearSelection2(true);// Select note to place behind the sheetstatus = swModelDocExt.SelectByID2("DetailItem3@Sheet Format1", "NOTE", 0.155548914819136, 0.017885845974329, 0, false, 0, null, 0);swSelectionMgr = (SelectionMgr)swModel.SelectionManager;swNote = (Note)swSelectionMgr.GetSelectedObject6(1, -1);swNote.BehindSheet = true;Debug.Print("Was the selected note placed behind the sheet? " + status);}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.object FeatureByName( System.string Name)

//This example shows how to get and set the table anchor of a hole table in a drawing.//----------------------------------------------------------------- // Preconditions: Verify that the specified drawing to open exists. // // Postconditions: // 1. Opens the drawing. // 2. At System.Diagnostics.Debugger.Break(), examine the position // of the hole table in the drawing. // 3. Click the Continue button in the SOLIDWORKS Visual Studio Tools for // Applications IDE. // 4. Sets the position of the hole table's anchor // to the specified location. // 5. Examine the hole table in the drawing. // // NOTE: If prompted, do not save changes when closing the drawing. //------------------------------------------------------------------ using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System; using System.Diagnostics;namespace TableAnchorPositionCSharp.csproj {partial class SolidWorksMacro{public void Main(){string filename = null;filename = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\SimpleHole.slddrw";ModelDoc2 model = default(ModelDoc2);int errors = 0;int warnings = 0;model = (ModelDoc2)swApp.OpenDoc6(filename, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);if (model == null)return;System.Diagnostics.Debugger.Break();TableAnnotation swTable = default(TableAnnotation);// If document is a drawing, then continueswitch (model.GetType()){case (int)swDocumentTypes_e.swDocDRAWING:DrawingDoc drw = default(DrawingDoc);drw = (DrawingDoc)model;// Get the current sheetSheet drwSheet = default(Sheet);drwSheet = (Sheet)drw.GetCurrentSheet();// Select the Sheet2 featureModelDocExtension modeldocext = default(ModelDocExtension);bool status = false;modeldocext = (ModelDocExtension)model.Extension;status = modeldocext.SelectByID2("Sheet2", "SHEET", 0, 0, 0, false, 0, null, 0);// Get the views on Sheet2object[] views = null;views = (object[])drwSheet.GetViews();foreach (object vView in views){View drwView = default(View);drwView = (View)vView;Feature viewFeature = default(Feature);viewFeature = (Feature)drw.FeatureByName(drwView.Name);// Traverse the features in the viewFeature subFeature = default(Feature);subFeature = (Feature)viewFeature.GetFirstSubFeature();// If the feature is HoleTableFeat, then get the table annotationswhile (!(subFeature == null)){if (subFeature.GetTypeName2() == "HoleTableFeat"){HoleTable swHoleTable = default(HoleTable);swHoleTable = (HoleTable)subFeature.GetSpecificFeature2();object[] holeTables = null;holeTables = (object[])swHoleTable.GetTableAnnotations();// If the annotation is a hole table, then continueif ((holeTables != null)){foreach (object table in holeTables){swTable = (TableAnnotation)table;// If the hole table is anchored, then continueif (swTable.Type == (int)swTableAnnotationType_e.swTableAnnotation_HoleChart){if (swTable.Anchored != false){TableAnchor holeTableAnchor = default(TableAnchor);holeTableAnchor = (TableAnchor)drwView.Sheet.get_TableAnchor((int)swTableAnnotationType_e.swTableAnnotation_HoleChart);// Get the position of the table anchordouble[] anchorPosition = null;anchorPosition = (double[])holeTableAnchor.Position;// Determine type of table anchorswBOMConfigurationAnchorType_e newCorner = default(swBOMConfigurationAnchorType_e);string corner = null;switch (swTable.AnchorType){case (int)swBOMConfigurationAnchorType_e.swBOMConfigurationAnchor_BottomLeft:corner = " Bottom-left ";newCorner = swBOMConfigurationAnchorType_e.swBOMConfigurationAnchor_TopRight;break;case (int)swBOMConfigurationAnchorType_e.swBOMConfigurationAnchor_BottomRight:corner = " Bottom-right ";newCorner = swBOMConfigurationAnchorType_e.swBOMConfigurationAnchor_TopLeft;break;case (int)swBOMConfigurationAnchorType_e.swBOMConfigurationAnchor_TopLeft:corner = " Top-left ";newCorner = swBOMConfigurationAnchorType_e.swBOMConfigurationAnchor_BottomRight;break;case (int)swBOMConfigurationAnchorType_e.swBOMConfigurationAnchor_TopRight:corner = " Top-right ";newCorner = swBOMConfigurationAnchorType_e.swBOMConfigurationAnchor_BottomLeft;break;}swTable.AnchorType = (int)newCorner;// Set the new position of the table anchordouble[] dNewPosition = new double[2];dNewPosition[0] = 0.0;dNewPosition[1] = 0.0;holeTableAnchor.Position = dNewPosition;}}}}}subFeature = (Feature)subFeature.GetNextSubFeature();}}break;case (int)swDocumentTypes_e.swDocASSEMBLY:case (int)swDocumentTypes_e.swDocPART:break;}}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.bool GenerateViewPaletteViews( System.string FileName)

//This example shows how to get and set whether to hide cutting line shoulders in a //section view.//-------------------------------------------------------------------------- // Preconditions: // 1. Verify that the part and templates exist. // 2. Open the Immediate window. // // Postconditions: // 1. Opens the part. // 2. Creates a drawing of the part. // 3. Creates a section view. // 4. Gets and sets whether to hide cutting line shoulders in the section // view. // 5. Examine the Immediate window. // // NOTE: Because the part is used elsewhere, do not save it or the drawing. //-------------------------------------------------------------------------- using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System; using System.Diagnostics;namespace Macro1CSharp.csproj {public partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel = default(ModelDoc2);DrawingDoc swDrawing = default(DrawingDoc);Sheet swSheet = default(Sheet);View swView = default(View);ModelDocExtension swModelDocExt = default(ModelDocExtension);SketchSegment swSketchSegment = default(SketchSegment);SketchManager swSketchMgr = default(SketchManager);DrSection swSectionView = default(DrSection);bool status = false;int errors = 0;int warnings = 0;string fileName = null;double swSheetWidth = 0;double swSheetHeight = 0;string drawingTemplate = null;string sheetTemplate = null;//Open partfileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\cam roller.sldprt";swModel = (ModelDoc2)swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocPART, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);//Create drawing of partswSheetWidth = 1.189;swSheetHeight = 0.841;drawingTemplate = "C:\\ProgramData\\SolidWorks\\SOLIDWORKS 2017\\templates\\Drawing.drwdot";swDrawing = (DrawingDoc)swApp.NewDocument(drawingTemplate, (int)swDwgPaperSizes_e.swDwgPapersUserDefined, swSheetWidth, swSheetHeight);swSheet = (Sheet)swDrawing.GetCurrentSheet();swSheet.SetProperties2((int)swDwgPaperSizes_e.swDwgPapersUserDefined, (int)swDwgTemplates_e.swDwgTemplateCustom, 1, 2, false, swSheetWidth, swSheetHeight, true);sheetTemplate = "C:\\ProgramData\\SolidWorks\\SOLIDWORKS 2017\\lang\\english\\sheetformat\\a0 - iso.slddrt";swSheet.SetTemplateName(sheetTemplate);swSheet.ReloadTemplate(true);status = swDrawing.GenerateViewPaletteViews(fileName);swView = (View)swDrawing.DropDrawingViewFromPalette2("*Left", 0.580930433566434, 0.431525272727273, 0);//Create section viewswDrawing = (DrawingDoc)swApp.ActiveDoc;status = swDrawing.ActivateView("Drawing View1");swModel.ClearSelection2(true);swModel = (ModelDoc2)swDrawing;swSketchMgr = (SketchManager)swModel.SketchManager;swSketchSegment = (SketchSegment)swSketchMgr.CreateLine(0.0, 0.0, 0.0, 0.012168, 0.021283, 0.0);swSketchSegment = (SketchSegment)swSketchMgr.CreateLine(0.0, 0.0, 0.0, 0.024347, -0.010966, 0.0);swModelDocExt = (ModelDocExtension)swModel.Extension;status = swModelDocExt.SelectByID2("Line1", "SKETCHSEGMENT", 0.690604633175108, 0.625483883858213, 0, false, 0, null, 0);status = swModelDocExt.SelectByID2("Line2", "SKETCHSEGMENT", 0.747211061353527, 0.357889859742052, 0, true, 0, null, 0);swView = (View)swDrawing.CreateSectionViewAt5(0.676815388637685, 0.116110180826413, 0, "A", (int)swCreateSectionViewAtOptions_e.swCreateSectionView_OffsetSection, null, 0);status = swDrawing.ActivateView("Drawing View2");swModel.ClearSelection2(true);//Get section view and get and set whether to hide cutting line shouldersswSectionView = (DrSection)swView.GetSection();if (swSectionView.CuttingLineShoulders){Debug.Print("Hide cutting line shoulders = True");Debug.Print("Setting hide cutting line shoulders to False");swSectionView.CuttingLineShoulders = false;Debug.Print(" Hide cutting line shoulders = " + swSectionView.CuttingLineShoulders);}else{Debug.Print("Hide cutting line shoulders = False");Debug.Print("Setting hide cutting line shoulders to True");swSectionView.CuttingLineShoulders = true;Debug.Print(" Hide cutting line shoulders = " + swSectionView.CuttingLineShoulders);}}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.object GetCurrentSheet()

This example shows how to create a title block in a drawing, if one does not already exist, and how to get the notes from an existing title block in a drawing.//-------------------------------------------------------- // Preconditions: Drawing document is open. // // Postconditions: If the drawing contains a title block, then // the notes of that block are printed // to the Immediate window. If not, // a title block is created. //-------------------------------------------------------using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System; using System.Diagnostics; using System.Runtime.InteropServices; namespace ExampleCS.csproj {public partial class SolidWorksMacro{ModelDoc2 swModel;ModelDocExtension swExt;SelectionMgr swSelMgr;View swView;DrawingDoc swDraw;public void Main(){swModel = swApp.ActiveDoc as ModelDoc2;swExt = swModel.Extension;swSelMgr = swModel.SelectionManager as SelectionMgr;swDraw = swModel as DrawingDoc;Sheet swSheet;swSheet = swDraw.GetCurrentSheet() as Sheet;TitleBlock swTitleBlock;swTitleBlock = swSheet.TitleBlock;object[] vNotes;int i;// Create title block if one doesn't existif (swTitleBlock == null){swView = swDraw.GetFirstView() as View;vNotes = (object[])swView.GetNotes();// Add first two notes to the title blockDispatchWrapper[] notesArray = new DispatchWrapper[2];notesArray[0] = new DispatchWrapper(vNotes[0]);notesArray[1] = new DispatchWrapper(vNotes[1]);swTitleBlock = swSheet.InsertTitleBlock(notesArray);}vNotes = (object[])swTitleBlock.GetNotes();for (i = 0; i < vNotes.Length; i++){Note swNote;swNote = (Note)vNotes[i];Debug.Print("Name: " + swNote.GetName());Debug.Print("Value: " + swNote.GetText());}}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.object GetFirstView()

//This example shows how to get the drawing view's bounding box, position, and position //lock status.//--------------------------------------------------------- // Preconditions: // 1. Verify that the drawing document to open exists. // 2. Open the Immediate window. // // Postconditions: // 1. Opens the specified drawing document. // 2. Gets each drawing view's: // * origin's x and y positions relative // to the drawing sheet origin // * bounding box // * position lock status // 3. Examine the Immediate window. // // NOTE: Because the drawing is used elsewhere, do not save // changes. //---------------------------------------------------------- using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System; using System.Diagnostics;namespace Macro1.csproj {public partial class SolidWorksMacro{public void Main(){DrawingDoc swDraw = default(DrawingDoc);View swView = default(View);double[] outline = null;double[] pos = null;string fileName = null;int errors = 0;int warnings = 0;fileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\replaceview.slddrw";swDraw = (DrawingDoc)swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);swView = (View)swDraw.GetFirstView();while ((swView != null)){outline = (double[])swView.GetOutline();pos = (double[])swView.Position;Debug.Print("View = " + swView.Name);Debug.Print(" X and Y positions = (" + pos[0] * 1000.0 + ", " + pos[1] * 1000.0 + ") mm");Debug.Print(" X and Y bounding box minimums = (" + outline[0] * 1000.0 + ", " + outline[1] * 1000.0 + ") mm");Debug.Print(" X and Y bounding box maximums = (" + outline[2] * 1000.0 + ", " + outline[3] * 1000.0 + ") mm");Debug.Print(" Position locked?" + swView.PositionLocked);swView = (View)swView.GetNextView();}}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.object GetSheetNames()

//This example shows how to modify and reload a sheet format template.//------------------------------------------------------------ // Preconditions: // 1. Make a copy of: // C:\ProgramData\SolidWorks\SOLIDWORKS version\lang\english\sheetformat\a0 - iso.slddrt. // 2. Create a new blank drawing using standard sheet size AO (ISO). // 3. Add another blank sheet to the drawing, for a total of two sheets. // 4. Open the Immediate window. // // Postconditions: // 1. Modifies the sheet format template to include a new // note. // 2. Examine Sheet1, Sheet2, and the Immediate window. // 3. Delete: // C:\ProgramData\SolidWorks\SOLIDWORKS version\lang\english\sheetformat\a0 - iso.slddrt. // 4. Rename the copy that you made in Preconditions step 1 to: // C:\ProgramData\SolidWorks\SOLIDWORKS version\lang\english\sheetformat\a0 - iso.slddrt. //------------------------------------------------------------ using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System; using System.Diagnostics;namespace Macro1CSharp.csproj {public partial class SolidWorksMacro{const bool TEST_APPLY_CHANGES_TO_ALL = true;private string GetReloadResult(swReloadTemplateResult_e result){string functionReturnValue = null;switch (result){case (swReloadTemplateResult_e)swReloadTemplateResult_e.swReloadTemplate_Success:functionReturnValue = "Success";break;case (swReloadTemplateResult_e)swReloadTemplateResult_e.swReloadTemplate_UnknownError:functionReturnValue = "FAIL - Unknown Error";break;case (swReloadTemplateResult_e)swReloadTemplateResult_e.swReloadTemplate_FileNotFound:functionReturnValue = "FAIL - File Not Found";break;case (swReloadTemplateResult_e)swReloadTemplateResult_e.swReloadTemplate_CustomSheet:functionReturnValue = "FAIL - Custom Sheet";break;case (swReloadTemplateResult_e)swReloadTemplateResult_e.swReloadTemplate_ViewOnly:functionReturnValue = "FAIL - View Only";break;default:functionReturnValue = "FAIL - <unrecognized error code - " + result + ">";break;}return functionReturnValue;}public void Main(){ModelDoc2 swModel = default(ModelDoc2);swModel = (ModelDoc2)swApp.ActiveDoc;if (swModel == null){Debug.Print("Create a new empty drawing and add a second sheet to the drawing.");return;}if (swModel.GetType() != (int)swDocumentTypes_e.swDocDRAWING)return;DrawingDoc swDrwng = default(DrawingDoc);swDrwng = (DrawingDoc)swModel;//Get the current sheetSheet activeSheet = default(Sheet);activeSheet = (Sheet)swDrwng.GetCurrentSheet();Debug.Print("Active sheet name: " + activeSheet.GetName());//Get the sheet format templatestring templateName = null;templateName = activeSheet.GetTemplateName();Debug.Print("Sheet format template name to modify: " + templateName);swDrwng.EditTemplate();//Add a new note to the sheet format templateNote swNote = default(Note);swNote = (Note)swModel.InsertNote("A New Note");Annotation swAnno = default(Annotation);swAnno = (Annotation)swNote.GetAnnotation();swAnno.SetPosition2(0, 0.2, 0);TextFormat txtFormat = default(TextFormat);txtFormat = (TextFormat)swAnno.GetTextFormat(0);txtFormat.BackWards = (txtFormat.BackWards == false);txtFormat.Bold = true;txtFormat.CharHeightInPts = 10 * txtFormat.CharHeightInPts;swAnno.SetTextFormat(0, false, txtFormat);swDrwng.EditSheet();//At this point, the active sheet's format has changed if (TEST_APPLY_CHANGES_TO_ALL){//Save sheet format back to original sheet format templateactiveSheet.SaveFormat(templateName);//Reload all other sheets from the updated sheet format templateobject[] vSheetNames = null;vSheetNames = (object[])swDrwng.GetSheetNames();foreach (string vName in vSheetNames){if (vName != (string)activeSheet.GetName()){Debug.Print("Other sheet name: " + vName);Sheet otherSheet = default(Sheet);otherSheet = (Sheet)swDrwng.get_Sheet(vName);if (otherSheet.GetTemplateName() == templateName){swReloadTemplateResult_e reloadResult = default(swReloadTemplateResult_e);//Keep modifications and and reload all other elements//from original sheet format templatereloadResult = (swReloadTemplateResult_e)otherSheet.ReloadTemplate(true);//Discard modifications and reload all elements from//original sheet format template//reloadResult = otherSheet.ReloadTemplate(False) Debug.Print("Reload sheet format for <" + otherSheet.GetName() + ">: " + GetReloadResult(reloadResult));}}}swDrwng.ActivateSheet(activeSheet.GetName());}else{//Discard the changes and reload the original sheet format templateswReloadTemplateResult_e reloadResult = default(swReloadTemplateResult_e);reloadResult = (swReloadTemplateResult_e)activeSheet.ReloadTemplate(false);Debug.Print("Done - " + GetReloadResult(reloadResult));}}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.int GetViewCount()

This example shows how to get all of the views and notes in a drawing document.'-------------------------------------------- ' Preconditions: Drawing document is open and at least ' one view has some notes. ' ' Postconditions: None ' ' NOTE: IDrawingDoc::GetViews returns both sheets and views. '----------------------------------------------Option Explicit Dim swApp As SldWorks.SldWorks Dim swModel As SldWorks.ModelDoc2 Dim swDrawDoc As SldWorks.DrawingDoc Dim swView As SldWorks.View Dim swNote As SldWorks.Note Dim sheetCount As Long Dim viewCount As Long Dim noteCount As Long Dim i As LongSub main()Set swApp = Application.SldWorks Set swModel = swApp.ActiveDoc Set swDrawDoc = swModel Dim viewCount As Long viewCount = swDrawDoc.GetViewCount Dim ss As Variant ss = swDrawDoc.GetViews For sheetCount = LBound(ss) To UBound(ss)Dim vv As Variantvv = ss(sheetCount)For viewCount = LBound(vv) To UBound(vv)Debug.Print (vv(viewCount).GetName2())Dim vNotes As VariantnoteCount = vv(viewCount).GetNoteCountIf noteCount > 0 ThenvNotes = vv(viewCount).GetNotesFor i = 0 To noteCount - 1Debug.Print " Note text: " & vNotes(i).GetTextNextEnd IfNext viewCount Next sheetCount End Sub

void HideEdge()

//This example shows how to hide and then show all of the edges in the root component in //a drawing view.//--------------------------------------------------------------------------- // Preconditions: // 1. Verify that the specified drawing document to open exists. // 2. Open the Immediate window. // // Postconditions: // 1. Opens the specified drawing document. // 2. Hides and then shows all edges in the root component in // Drawing View1. // 3. Examine the drawing and Immediate window. //---------------------------------------------------------------------------- using Microsoft.VisualBasic; using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Diagnostics; using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; namespace HideShowEdges_CSharp.csproj {partial class SolidWorksMacro{ModelDoc2 swModel;DrawingDoc swDraw;DocumentSpecification swDocSpecification;Sheet swSheet;View swView;DrawingComponent swDrawingComponent;Component2 swComponent;Entity swEntity;object[] vEdges;bool bRet;int i;public void Main(){// Specify the drawing to openswDocSpecification = (DocumentSpecification)swApp.GetOpenDocSpec("C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\advdrawings\\foodprocessor.SLDDRW");swModel = (ModelDoc2)swApp.ActiveDoc;if (swModel == null){swModel = swApp.OpenDoc7(swDocSpecification);}swModel = (ModelDoc2)swApp.ActiveDoc;swDraw = (DrawingDoc)swModel;// Get the current sheetswSheet = (Sheet)swDraw.GetCurrentSheet();Debug.Print(swSheet.GetName());// Select Drawing View1bRet = swModel.Extension.SelectByID2("Drawing View1", "DRAWINGVIEW", 0.0, 0.0, 0.0, true, 0, null, (int)swSelectOption_e.swSelectOptionDefault);swView = (View)((SelectionMgr)swModel.SelectionManager).GetSelectedObject6(1, -1);// Print the drawing view name and get the component in the drawing viewDebug.Print(swView.GetName2());swDrawingComponent = swView.RootDrawingComponent;swComponent = swDrawingComponent.Component;// Get the component's visible entities in the drawing viewint eCount = 0;eCount = swView.GetVisibleEntityCount2(swComponent, (int)swViewEntityType_e.swViewEntityType_Edge);vEdges = (object[])swView.GetVisibleEntities2(swComponent, (int)swViewEntityType_e.swViewEntityType_Edge);Debug.Print("Number of edges found: " + eCount);// Hide all of the visible edges in the drawing viewfor (i = 0; i <= eCount - 1; i++){swEntity = (Entity)vEdges[i];swEntity.Select4(true, null);swDraw.HideEdge();}// Clear all selectionsswModel.ClearSelection2(true);// Show all hidden edgesswView.HiddenEdges = vEdges;}public SldWorks swApp;} }

void HideShowDrawingViews()

//This example shows how to set the display mode of a drawing view.//---------------------------------------------------------------------------- // Preconditions: // 1. Open a drawing document. // 2. Select a view. // 3. Inspect the graphics area and press F5 six times. // // Postconditions: The display mode, hide/show, and suppression // settings for the document are modified as specified. //----------------------------------------------------------------------------using Microsoft.VisualBasic; using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Diagnostics; using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; namespace DisplayHiddenLinesinDrawing_CSharp.csproj {partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel = default(ModelDoc2);DrawingDoc swDraw = default(DrawingDoc);swModel = (ModelDoc2)swApp.ActiveDoc;swDraw = (DrawingDoc)swModel;swDraw.ViewDisplayHidden();System.Diagnostics.Debugger.Break();swDraw.ViewDisplayHiddengreyed();System.Diagnostics.Debugger.Break();swDraw.ViewDisplayWireframe();System.Diagnostics.Debugger.Break();swDraw.ViewDisplayShaded();System.Diagnostics.Debugger.Break();// Suppress viewswDraw.SuppressView();System.Diagnostics.Debugger.Break();// Display an X where the view was suppressedswDraw.HideShowDrawingViews();System.Diagnostics.Debugger.Break();// Unsuppress viewswDraw.UnsuppressView();}public SldWorks swApp;} }

Centerline InsertCenterLine2()

//This example shows how to get all of the centerlines in all of the drawing views in a //drawing.//------------------------------------ // Preconditions: // 1. Verify that the drawing document to open exists. // 2. Open the Immediate window. // // Postconditions: // 1. Opens the specified drawing. // 2. Inserts a centerline annotation. // 3. Prints the path and file name of the drawing document // to the Immediate window. // 4. Iterates the sheet and drawing view, prints their names, and // prints the name of the centerline annotation to // the Immediate window. // 5. Examine the Immediate window. // // NOTE: Because this drawing document is used elsewhere, // do not save any changes. //------------------------------------ using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System; using System.Diagnostics;namespace CenterLinesCSharp.csproj {public partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel = default(ModelDoc2);ModelDocExtension swModelDocExt = default(ModelDocExtension);DrawingDoc swDrawing = default(DrawingDoc);View swView = default(View);Centerline swCenterLine = default(Centerline);Annotation swAnnotation = default(Annotation);bool status = false;int errors = 0;int warnings = 0;string fileName = null;fileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\cylinder20.SLDDRW";swModel = (ModelDoc2)swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);swDrawing = (DrawingDoc)swModel;swModelDocExt = (ModelDocExtension)swModel.Extension;status = swDrawing.ActivateView("Drawing View1");status = swModelDocExt.SelectByID2("cylinder20-9@Drawing View1", "COMPONENT", 0, 0, 0, false, 0, null, 0);status = swModelDocExt.SelectByID2("", "FACE", 0.513454307125032, 0.454946591641617, 250.013794595267, false, 0, null, 0);swCenterLine = (Centerline)swDrawing.InsertCenterLine2();swModel.ClearSelection2(true);swView = (View)swDrawing.GetFirstView();Debug.Print("File = " + swModel.GetPathName());while ((swView != null)){Debug.Print(" View = " + swView.GetName2());swCenterLine = (Centerline)swView.GetFirstCenterLine();while ((swCenterLine != null)){swAnnotation = (Annotation)swCenterLine.GetAnnotation();Debug.Print(" Name = " + swAnnotation.GetName());swCenterLine = swCenterLine.GetNext();}swView = (View)swView.GetNextView();}}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.bool InsertCircularNotePattern(?
? ?System.double ArcRadius,
? ?System.double ArcAngle,
? ?System.int PatternNum,
? ?System.double PatternSpacing,
? ?System.bool PatternRotate,
? ?System.string DeleteInstances)

This example shows how to insert linear and circular note patterns in a drawing.//--------------------------------------------------------- // // Preconditions: Verify that the specified drawing document // to open exists. // // Postconditions: // 1. Inserts a note in the drawing and selects the note. // 2. Inserts a linear note pattern (2 instances, including // the original note) in the drawing. // 3. Inserts a circular note pattern (4 instances, including // the original note) in the drawing. // // NOTE: Because the model is used elsewhere, do not save // changes. //---------------------------------------------------------- using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System;namespace InsertLinearCircularNotePatternsCSharp.csproj {partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel = default(ModelDoc2);DrawingDoc swDrawingDoc = default(DrawingDoc);Note swNote = default(Note);bool status = false;int errors = 0;int warnings = 0;// Open drawing document, activate sheet, and make it the active documentswModel = (ModelDoc2)swApp.OpenDoc6("C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\advdrawings\\foodprocessor.slddrw", 3, 0, "", ref errors, ref warnings);swApp.ActivateDoc2("foodprocessor - Sheet1", false, ref errors);swDrawingDoc = (DrawingDoc)swApp.ActiveDoc;// Insert a noteswNote = (Note)swModel.InsertNote("Test inserting linear and circular note patterns");// Select the just-inserted notestatus = swModel.Extension.SelectByID2("DetailItem174@Sheet1", "NOTE", 0.2558797881203, 0.3700526, 0, false, 0, null, 0);// Create a linear note pattern using the selected notestatus = swDrawingDoc.InsertLinearNotePattern(2, 1, 0.01, 0.01, 0.7853981633975, 1.570796326795, "");// Create a circular pattern using the selected notestatus = swDrawingDoc.InsertCircularNotePattern(0.075, 4.03202193189, -4, 1.570796326795, true, "");}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.object InsertRevisionCloud(?System.int CloudShape)

//This example shows how to insert revision clouds into a drawing and access revision //cloud data.//---------------------------------------------------------------------------- // Preconditions: Open public_documents\samples\tutorial\api\resetsketchvisibility.slddrw. // // Postconditions: // 1. Inserts an elliptical revision cloud in the drawing. // 2. Examine the Immediate window. // // NOTE: Because the drawing is used elsewhere, do not save changes. // --------------------------------------------------------------------------- using Microsoft.VisualBasic; using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Diagnostics; using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; namespace InsertRevisionCloud_CSharp.csproj {partial class SolidWorksMacro{DrawingDoc Part;RevisionCloud RevCloud;Annotation RevCloudAnno;bool boolstatus;public void Main(){Part = (DrawingDoc)swApp.ActiveDoc;boolstatus = Part.ActivateView("Drawing View1");// Create a revision cloud with an elliptical shapeRevCloud = (RevisionCloud)Part.InsertRevisionCloud(1);if ((RevCloud != null)){RevCloudAnno = (Annotation)RevCloud.GetAnnotation();if ((RevCloudAnno != null)){// Position the center of the elliptical revision cloudboolstatus = RevCloudAnno.SetPosition(0.270847371964905, 0.553263328912467, 0);RevCloud.ArcRadius = 0.00508;// Create a path point on the corner of an ellipse-inscribed rectangleboolstatus = RevCloud.SetPathPointAtIndex(-1, 0.378419710263212, 0.511051398694144, 0);// Close the revision cloud pathboolstatus = RevCloud.Finalize();}}}public SldWorks swApp;} }

TableAnnotation InsertTableAnnotation2(?
? ?System.bool UseAnchorPoint,
? ?System.double X,
? ?System.double Y,
? ?System.int AnchorType,
? ?System.string TableTemplate,
? ?System.int Rows,
? ?System.int Columns)
?

This example shows how to get a general table feature and some of its table annotation data.//----------------------------------------------------------------- // Preconditions: // 1. Verify that the specified drawing document to open exists. // 2. Open the Immediate window. // // Postconditions: // 1. Opens the specified drawing document. // 2. Inserts a table annotation. // 3. Gets the general table feature. // 4. Prints the name of the general table feature and // some of its annotation table data the Immediate window. // 5. Examine the Immediate window. // // NOTE: Because the drawing document is used elsewhere, do not // save changes. //-----------------------------------------------------------------using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System; using System.Diagnostics;namespace GeneralTableFeatureCSharp.csproj {public partial class SolidWorksMacro{ public void Main(){ModelDoc2 swModel = default(ModelDoc2);DrawingDoc swDrawing = default(DrawingDoc);bool status = false;int errors = 0;int warnings = 0;string fileName = null;TableAnnotation swTableAnnotation = default(TableAnnotation);GeneralTableFeature swGeneralTableFeature = default(GeneralTableFeature);SelectionMgr swSelectionMgr = default(SelectionMgr);ModelDocExtension swModelDocExt = default(ModelDocExtension);Feature swFeature = default(Feature);int nbrTableAnnotations = 0;object[] tableAnnotations = null;int i = 0;bool anchorAttached = false;int anchorType = 0;int nbrColumns = 0;int nbrRows = 0;//Open drawing documentfileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\assem20.slddrw";swModel = (ModelDoc2)swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);//Insert table annotationswDrawing = (DrawingDoc)swModel;swTableAnnotation = (TableAnnotation)swDrawing.InsertTableAnnotation2(false, 0.0275123456559767, 0.132124518483965, 1, "", 2, 2);if ((swTableAnnotation != null)){swTableAnnotation.BorderLineWeight = 0;swTableAnnotation.GridLineWeight = 0;}//Select and get general table featureswModelDocExt = (ModelDocExtension)swModel.Extension;status = swModelDocExt.SelectByID2("General Table1", "GENERALTABLEFEAT", 0, 0, 0, false, 0, null, 0);swSelectionMgr = (SelectionMgr)swModel.SelectionManager;swGeneralTableFeature = (GeneralTableFeature)swSelectionMgr.GetSelectedObject6(1, -1);swFeature = (Feature)swGeneralTableFeature.GetFeature();Debug.Print("General table feature name: " + swFeature.Name);//Get general table feature's annotation datanbrTableAnnotations = swGeneralTableFeature.GetTableAnnotationCount();Debug.Print("Number of annotations = " + nbrTableAnnotations);tableAnnotations = (object[])swGeneralTableFeature.GetTableAnnotations();for (i = 0; i <= (nbrTableAnnotations - 1); i++){swTableAnnotation = (TableAnnotation)tableAnnotations[i];anchorAttached = swTableAnnotation.Anchored;Debug.Print("Table anchored = " + anchorAttached);anchorType = swTableAnnotation.AnchorType;Debug.Print("Anchor type = " + anchorType);nbrColumns = swTableAnnotation.ColumnCount;Debug.Print("Number of columns = " + nbrColumns);nbrRows = swTableAnnotation.RowCount;Debug.Print("Number of rows = " + nbrRows);}}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

void IsolateChangedDimensions()

This example shows how to isolate a changed dimension.//------------------------------------------------------ // Preconditions: The specified drawing and part // documents exist. // // Postconditions: // 1. Opens the drawing document. // 2. Sets the system option to display // changed dimensions in the color selected // for Tools > Options > System Options > // Colors > Color scheme settings > // Drawings, Changed dimensions. // 3. Saves and closes the drawing document. // 4. Opens the part document of the drawing document. // 5. Changes a dimension. // 6. Saves and closes the part document. // 7. Opens the previously saved drawing document. // 8. Examine the drawing document to verify that // the changed dimension is displayed in the // changed-dimension color. Place your cursor over // the dimension to see its previous value. //------------------------------------------------------- using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System;namespace IsolateChangedDimensionsDrawingDocCSharp.csproj {partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel = default(ModelDoc2);ModelDocExtension swModelDocExt = default(ModelDocExtension);DrawingDoc swDrawing = default(DrawingDoc);string fileName = null;string saveFileName = null;int errors = 0;int warnings = 0;bool status = false;// Open drawing document fileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\box.slddrw";swModel = (ModelDoc2)swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);// Isolate changed dimensions // Equivalent to selecting Tools > Options > System Options > Colors > // Use specified color for changed drawing dimensions on openswApp.SetUserPreferenceToggle((int)swUserPreferenceToggle_e.swUseChangedDimensions, true);swDrawing = (DrawingDoc)swModel;swDrawing.IsolateChangedDimensions();// Save drawing document to another namesaveFileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\box_changed.slddrw";swModelDocExt = (ModelDocExtension)swModel.Extension;status = swModelDocExt.SaveAs(saveFileName, (int)swSaveAsVersion_e.swSaveAsCurrentVersion, (int)swSaveAsOptions_e.swSaveAsOptions_Silent, null, ref errors, ref warnings);swApp.CloseDoc(saveFileName);// Open the part document referenced by the drawing document,// change a dimension, and save the documentfileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\box.sldprt";swModel = (ModelDoc2)swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocPART, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);swModelDocExt = (ModelDocExtension)swModel.Extension;status = swModelDocExt.SelectByID2("Sketch1", "SKETCH", 0, 0, 0, true, 0, null, 0);status = swModelDocExt.SelectByID2("D2@Sketch1@box.SLDPRT", "DIMENSION", -0.03613329319351, -0.02215939491444, 0.02938582119709, true, 0, null, 0);Dimension swDimension = default(Dimension);swDimension = (Dimension)swModel.Parameter("D2@Sketch1");swDimension.SystemValue = 0.185;swModel.ClearSelection2(true);status = swModel.EditRebuild3();status = swModel.Save3((int)swSaveAsOptions_e.swSaveAsOptions_Silent, ref errors, ref warnings);swApp.CloseDoc(fileName);// Open the previously saved drawing document// and place your cursor on the changed dimension,// which displays in the color specified for// changed dimensions, to see its previous valueswModel = (ModelDoc2)swApp.OpenDoc6(saveFileName, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.bool NewSheet4(?
? ?System.string Name,
? ?System.int PaperSize,
? ?System.int TemplateIn,
? ?System.double Scale1,
? ?System.double Scale2,
? ?System.bool FirstAngle,
? ?System.string TemplateName,
? ?System.double Width,
? ?System.double Height,
? ?System.string PropertyViewName,
? ?System.double ZoneLeftMargin,
? ?System.double ZoneRightMargin,
? ?System.double ZoneTopMargin,
? ?System.double ZoneBottomMargin,
? ?System.int ZoneRow,
? ?System.int ZoneCol)

This example shows how to create a drawing sheet with zones, modify the zones in the drawing sheet, and insert a revision table.//----------------------------------------------------------------------------- // Preconditions: // 1. Verify that the specified model document and templates exist. // 2. Open an Immediate window. // // Postconditions: // 1. Creates a new sheet named Test with four zones. // 2. Inspect the graphics area. // 3. Press F5. // 4. Modifies Test to contain nine zones. // 5. Creates Revision Table1. // 6. Adds a revision row to the table. // 7. Inspect the FeatureManager design tree, the graphics area, and the // Immediate window. // // NOTE: Because the model is used elsewhere, do not save changes to it. //--------------------------------------------------------------------------- using Microsoft.VisualBasic; using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Diagnostics; using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; namespace InsertRevisionTable_CSharp.csproj {partial class SolidWorksMacro{DrawingDoc swDraw;Sheet currentsheet;ModelDoc2 swModel;RevisionTableAnnotation revTableAnno;bool boolstatus;int longstatus;int longwarnings;public void Main(){swModel = swApp.OpenDoc6("C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\assem20.slddrw", 3, 0, "", ref longstatus, ref longwarnings);swApp.ActivateDoc2("assem20 - Sheet1", false, ref longstatus);swModel = (ModelDoc2)swApp.ActiveDoc;swDraw = (DrawingDoc)swModel;boolstatus = swModel.Extension.SetUserPreferenceToggle((int)swUserPreferenceToggle_e.swShowZoneLines, 0, true);boolstatus = swModel.Extension.SetUserPreferenceInteger((int)swUserPreferenceIntegerValue_e.swRevisionTableMultipleSheetStyle, 0, (int)swRevisionTableMultipleSheetStyle_e.swRevisionTable_Independent);if ((swDraw == null)){Debug.Print(" Please open a drawing document. ");}currentsheet = (Sheet)swDraw.GetCurrentSheet();swDraw.ActivateSheet(currentsheet.GetName());// Create sheet, Test, with 4 zonesboolstatus = swDraw.NewSheet4("Test", (int)swDwgPaperSizes_e.swDwgPaperAsize, (int)swDwgTemplates_e.swDwgTemplateAsize, 1, 1, true, "", 0, 0, "",0.5, 0.5, 0.5, 0.5, 2, 2);System.Diagnostics.Debugger.Break();boolstatus = swModel.Extension.SelectByID2("Sheet Format2", "SHEET", 0, 0, 0, false, 0, null, 0);swDraw.EditTemplate();swModel.EditSketch();swModel.ClearSelection2(true);boolstatus = swModel.Extension.SelectByID2("Sheet Format2", "SHEET", 0.0812585524728589, 0.139959974668275, 0, false, 0, null, 0);// Modify Test to have 9 zonesboolstatus = swDraw.SetupSheet6("Test", (int)swDwgPaperSizes_e.swDwgPapersUserDefined, (int)swDwgTemplates_e.swDwgTemplateCustom, 1, 1, true, "C:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS\\lang\\english\\sheetformat\\a - landscape.slddrt", 0.2794, 0.2159, "Default",false, 0.5, 0.5, 0.5, 0.5, 3, 3);swDraw.EditSheet();swModel.EditSketch();swModel.ForceRebuild3(true);currentsheet = (Sheet)swDraw.GetCurrentSheet();swDraw.ActivateSheet(currentsheet.GetName());// Insert a revision table and add a revision rowrevTableAnno = currentsheet.InsertRevisionTable2(true, 0.0, 0.0, (int)swBOMConfigurationAnchorType_e.swBOMConfigurationAnchor_TopLeft, "C:\\Program Files\\SOLIDWORKS Corp\\SOLIDWORKS\\lang\\English\\standard revision block.sldrevtbt", (int)swRevisionTableSymbolShape_e.swRevisionTable_CircleSymbol, true);Debug.Print("Revision table annotation");Debug.Print(" New revision: " + revTableAnno.AddRevision("A"));Debug.Print(" Current revision: " + revTableAnno.CurrentRevision);RevisionTableFeature revTableFeat = default(RevisionTableFeature);revTableFeat = revTableAnno.RevisionTableFeature;Debug.Print("Revision table feature");Debug.Print(" Number of revision table annotations: " + revTableFeat.GetTableAnnotationCount());Feature feat = default(Feature);feat = (Feature)revTableFeat.GetFeature();Debug.Print("Feature: " + feat.Name);}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

System.bool ReplaceViewModel(?
? ?System.string NewModelPathName,
? ?System.object Views,
? ?System.object Instances)

This example shows how to replace a model in drawing views.//--------------------------------------------------------------------------- // Preconditions: // 1. Open public_documents\samples\tutorial\api\assem20.slddrw. // 2. Verify that the specified replacement model exists. // // Postconditions: Replaces the specified component in Drawing View1 // with the specified model. // // NOTE: Because the model is used elsewhere, do not save changes // when closing it. //---------------------------------------------------------------------------using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System; namespace ReplaceViewModel_CSharp.csproj {partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel;ModelDocExtension swModelDocExt;DrawingDoc swDrawingDoc;SelectionMgr swSelectionMgr;DrawingComponent swDrawingComponent;View swView;Component2 swComponent;object view;object instance;object[] views = new object[1];object[] instances = new object[1];DispatchWrapper[] viewsIn = new DispatchWrapper[1];DispatchWrapper[] instancesIn = new DispatchWrapper[1];bool status;swModel = (ModelDoc2)swApp.ActiveDoc;swDrawingDoc = (DrawingDoc)swModel;status = swDrawingDoc.ActivateView("Drawing View1");//Select the view in which to replace the modelswModelDocExt = (ModelDocExtension)swModel.Extension;status = swModelDocExt.SelectByID2("Drawing View1", "DRAWINGVIEW", 0, 0, 0, false, 0, null, 0);swSelectionMgr = (SelectionMgr)swModel.SelectionManager;swView = (View)swSelectionMgr.GetSelectedObject6(1, -1);view = (object)swView;views[0] = view;viewsIn[0] = new DispatchWrapper(views[0]);// Select the instance of the model to replacestatus = swModelDocExt.SelectByID2("Assem20-3@Drawing View1", "COMPONENT", 0, 0, 0, false, 0, null, 0);swDrawingComponent = (DrawingComponent)swSelectionMgr.GetSelectedObject6(1, -1);swComponent = (Component2)swDrawingComponent.Component;instance = (object)swComponent;instances[0] = instance;instancesIn[0] = new DispatchWrapper(instances[0]);status = swDrawingDoc.ReplaceViewModel("C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\api\\bagel.sldprt", (viewsIn), (instancesIn));}public SldWorks swApp;} }

void SetSheetsSelected( System.object NewSheetList)

//This example shows how to modify the setups of multiple drawing sheets.//-------------------------------------------------------- // Preconditions: // 1. Verify that the drawing and sheet format files exist. // 2. Open the Immediate window. // // Postconditions: // 1. Opens the drawing. // 2. Sets Sheet1, Sheet2 and Sheet3 drawing sheet formats // to portrait. // 3. Rebuilds the drawing. // 4. Click each sheet tab, click Zoom to Fit, and examine // the sheet. // // NOTE: Because the drawing is used elsewhere, do not // save changes. //--------------------------------------------------------- using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst; using System.Runtime.InteropServices; using System;namespace Macro1CSharp.csproj {public partial class SolidWorksMacro{public void Main(){ModelDoc2 swModel = default(ModelDoc2);ModelDocExtension swModelDocExt = default(ModelDocExtension);DrawingDoc swDrawing = default(DrawingDoc);string fileName = null;bool status = false;int errors = 0;int warnings = 0;object sheetNameArray = null;string[] sheetNames = new string[2];fileName = "C:\\Users\\Public\\Documents\\SOLIDWORKS\\SOLIDWORKS 2018\\samples\\tutorial\\advdrawings\\foodprocessor.slddrw";swModel = (ModelDoc2)swApp.OpenDoc6(fileName, (int)swDocumentTypes_e.swDocDRAWING, (int)swOpenDocOptions_e.swOpenDocOptions_Silent, "", ref errors, ref warnings);swModelDocExt = (ModelDocExtension)swModel.Extension;swDrawing = (DrawingDoc)swModel;sheetNames[0] = "Sheet2";sheetNames[1] = "Sheet3";sheetNameArray = sheetNames;swDrawing.SetSheetsSelected(sheetNameArray);status = swDrawing.SetupSheet6("Sheet3", (int)swDwgPaperSizes_e.swDwgPapersUserDefined, (int)swDwgTemplates_e.swDwgTemplateCustom, 1, 1, true, "C:\\ProgramData\\SOLIDWORKS\\SOLIDWORKS 2017\\lang\\english\\sheetformat\\a4 - portrait.slddrt", 0.2794, 0.2159, "Default",true, 0, 0, 0, 0, 0, 0);swModel.ForceRebuild3(true);swModel.ViewZoomtofit2();}/// <summary>/// The SldWorks swApp variable is pre-assigned for you./// </summary>public SldWorks swApp;} }

void SuppressView()

//This example shows how to automatically insert center marks in multiple drawing views.//---------------------------------------------------------------------------- // Preconditions: Open public_documents\samples\tutorial\advdrawings\foodprocessor.slddrw. // // Postconditions: // 1. Clears the Tools > Options > Document Properties > Centerlines/Center Marks > // Scale by view scale check box. // 2. Activates Sheet3. // 3. Suppresses Drawing View9. // 4. Inserts center marks in Drawing View9 and Drawing View11. // 5. Unsuppresses Drawing View9. // 6. Examine the drawing. // // NOTE: Because the drawing is used elsewhere, do not save changes. // --------------------------------------------------------------------------- using System; using SolidWorks.Interop.sldworks; using SolidWorks.Interop.swconst;namespace AutoInsertCenterMarks_CSharp.csproj {partial class SolidWorksMacro{ModelDoc2 Part;DrawingDoc Draw;ModelDocExtension ModelDocExt;View swActiveView;bool boolstatus;public void Main(){Part = (ModelDoc2)swApp.ActiveDoc;Draw = (DrawingDoc)Part;ModelDocExt = (ModelDocExtension)Part.Extension;// Clear the Scale by view scale check box to set gapModelDocExt.SetUserPreferenceToggle((int)swUserPreferenceToggle_e.swDetailingCenterMarkScaleByViewScale, (int)swUserPreferenceOption_e.swDetailingNoOptionSpecified, false);Draw.ActivateSheet("Sheet3");// Suppress Drawing View9 boolstatus = ModelDocExt.SelectByID2("Drawing View9", "DRAWINGVIEW", 0, 0, 0, false, 0, null, 0);Draw.SuppressView();// Insert center marks for all holes, fillets, and slots in the specified viewboolstatus = Draw.ActivateView("Drawing View9");swActiveView = (View)Draw.ActiveDrawingView;boolstatus = swActiveView.AutoInsertCenterMarks2(7, 11, true, true, true, 0.0025, 0.0025, true, true, 0);boolstatus = Draw.ActivateView("Drawing View11");swActiveView = (View)Draw.ActiveDrawingView;boolstatus = swActiveView.AutoInsertCenterMarks2(7, 11, true, true, false, 0.005, 0.005, true, false, 0);Part.ClearSelection2(true);// Unsuppress Drawing View9boolstatus = ModelDocExt.SelectByID2("Drawing View9", "DRAWINGVIEW", 0, 0, 0, false, 0, null, 0);Draw.UnsuppressView();}public SldWorks swApp;}}


?

總結

以上是生活随笔為你收集整理的IDrawingDoc Interface 学习笔记的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

国产xxx69麻豆国语对白 | 国模大胆一区二区三区 | 中文字幕中文有码在线 | 福利一区二区三区视频在线观看 | 国产97在线 | 亚洲 | 亚洲精品综合一区二区三区在线 | 免费无码一区二区三区蜜桃大 | 日韩欧美成人免费观看 | 久久国产36精品色熟妇 | 国产熟妇另类久久久久 | 国产精品高潮呻吟av久久4虎 | 午夜性刺激在线视频免费 | 少妇人妻偷人精品无码视频 | 无码人妻精品一区二区三区下载 | 色情久久久av熟女人妻网站 | 中文字幕乱妇无码av在线 | 中文无码精品a∨在线观看不卡 | 国产乱人偷精品人妻a片 | 亚洲日韩中文字幕在线播放 | 久久久久人妻一区精品色欧美 | 免费看少妇作爱视频 | 国产午夜福利亚洲第一 | 激情五月综合色婷婷一区二区 | 男女作爱免费网站 | 亚洲欧美综合区丁香五月小说 | 国产乱人伦偷精品视频 | 一区二区三区乱码在线 | 欧洲 | 亚洲精品鲁一鲁一区二区三区 | a在线观看免费网站大全 | 狠狠色丁香久久婷婷综合五月 | 欧美日韩一区二区三区自拍 | 色综合久久久无码中文字幕 | 精品国产av色一区二区深夜久久 | 强伦人妻一区二区三区视频18 | 九九久久精品国产免费看小说 | 国产无遮挡又黄又爽免费视频 | 人人妻人人藻人人爽欧美一区 | 人妻体内射精一区二区三四 | av无码电影一区二区三区 | 欧美人与善在线com | 国产日产欧产精品精品app | 人人爽人人澡人人高潮 | 中文字幕色婷婷在线视频 | 精品夜夜澡人妻无码av蜜桃 | 亚洲人成网站色7799 | 亚洲综合在线一区二区三区 | 精品无码一区二区三区的天堂 | 亚洲成a人一区二区三区 | 激情人妻另类人妻伦 | 又大又硬又爽免费视频 | 日本精品少妇一区二区三区 | 又黄又爽又色的视频 | 亚洲国产精品久久久久久 | 中文字幕日产无线码一区 | 国产成人一区二区三区在线观看 | 久久精品女人天堂av免费观看 | 欧美丰满熟妇xxxx性ppx人交 | 成人精品视频一区二区三区尤物 | 亚洲精品一区二区三区在线观看 | 99国产欧美久久久精品 | 久久99精品久久久久久动态图 | 国产av无码专区亚洲awww | 亚洲伊人久久精品影院 | 久久99精品久久久久婷婷 | 欧美高清在线精品一区 | 成人无码精品一区二区三区 | 一个人看的视频www在线 | 欧美日韩一区二区三区自拍 | 丰满人妻翻云覆雨呻吟视频 | 荫蒂被男人添的好舒服爽免费视频 | 特黄特色大片免费播放器图片 | 亚洲 另类 在线 欧美 制服 | 中文字幕乱码人妻无码久久 | 爽爽影院免费观看 | 无码福利日韩神码福利片 | 窝窝午夜理论片影院 | 久久亚洲精品成人无码 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 一区二区传媒有限公司 | 青青久在线视频免费观看 | 精品久久久中文字幕人妻 | 日韩精品无码一本二本三本色 | 国产精品无码一区二区三区不卡 | 久久无码专区国产精品s | 久久综合狠狠综合久久综合88 | 麻豆人妻少妇精品无码专区 | 性欧美大战久久久久久久 | 免费无码午夜福利片69 | 国产精品亚洲一区二区三区喷水 | 亚洲日韩乱码中文无码蜜桃臀网站 | 亚洲精品www久久久 | 少妇无码av无码专区在线观看 | 久久五月精品中文字幕 | 久在线观看福利视频 | 亚洲无人区一区二区三区 | 国产猛烈高潮尖叫视频免费 | 熟妇人妻无码xxx视频 | 久久99精品久久久久久 | 国产午夜亚洲精品不卡 | 人人澡人摸人人添 | 99久久久无码国产aaa精品 | 熟妇激情内射com | 亚洲人成无码网www | 99久久久无码国产aaa精品 | 欧美自拍另类欧美综合图片区 | 日本又色又爽又黄的a片18禁 | 日本又色又爽又黄的a片18禁 | 红桃av一区二区三区在线无码av | 思思久久99热只有频精品66 | 成人无码视频免费播放 | 人妻少妇被猛烈进入中文字幕 | 极品嫩模高潮叫床 | 久久97精品久久久久久久不卡 | 国产亚洲精品精品国产亚洲综合 | 熟妇人妻无乱码中文字幕 | www国产亚洲精品久久久日本 | 日韩精品乱码av一区二区 | 国产人妻精品午夜福利免费 | 国产精品亚洲综合色区韩国 | 亚洲自偷自偷在线制服 | 久久99精品国产麻豆 | 久久久精品欧美一区二区免费 | 亚洲欧美日韩综合久久久 | 性欧美videos高清精品 | 欧美日韩综合一区二区三区 | av人摸人人人澡人人超碰下载 | 嫩b人妻精品一区二区三区 | 色窝窝无码一区二区三区色欲 | 精品偷拍一区二区三区在线看 | 最新国产麻豆aⅴ精品无码 | а√资源新版在线天堂 | 一本色道婷婷久久欧美 | 亚洲中文字幕在线无码一区二区 | 少妇性俱乐部纵欲狂欢电影 | 日本精品人妻无码77777 天堂一区人妻无码 | 欧美xxxx黑人又粗又长 | 亚洲男女内射在线播放 | 精品无码国产自产拍在线观看蜜 | 人人超人人超碰超国产 | 无码国模国产在线观看 | 欧美丰满熟妇xxxx性ppx人交 | 成人综合网亚洲伊人 | 久久亚洲国产成人精品性色 | 久久综合网欧美色妞网 | 男人的天堂2018无码 | 国产av剧情md精品麻豆 | 久久综合香蕉国产蜜臀av | 女高中生第一次破苞av | 天堂а√在线中文在线 | 日本一本二本三区免费 | 免费国产黄网站在线观看 | 四虎影视成人永久免费观看视频 | 鲁大师影院在线观看 | 国产精品18久久久久久麻辣 | 国产在线aaa片一区二区99 | 色爱情人网站 | 超碰97人人射妻 | 撕开奶罩揉吮奶头视频 | 欧美午夜特黄aaaaaa片 | 亚洲国产精品美女久久久久 | 色综合久久久无码中文字幕 | 无码纯肉视频在线观看 | 自拍偷自拍亚洲精品被多人伦好爽 | 爆乳一区二区三区无码 | 伦伦影院午夜理论片 | 婷婷丁香六月激情综合啪 | 国产偷抇久久精品a片69 | 久久亚洲精品中文字幕无男同 | 欧美真人作爱免费视频 | 丝袜人妻一区二区三区 | 久久99精品国产麻豆 | 又粗又大又硬毛片免费看 | 76少妇精品导航 | 久久精品国产精品国产精品污 | 无码人妻出轨黑人中文字幕 | 国产9 9在线 | 中文 | 久久久久久久久蜜桃 | 亚洲成a人片在线观看无码 | 免费播放一区二区三区 | 宝宝好涨水快流出来免费视频 | 欧美日韩综合一区二区三区 | 日本免费一区二区三区最新 | 国产精品va在线播放 | 亚洲娇小与黑人巨大交 | 蜜桃视频韩日免费播放 | 国产精品久久久久无码av色戒 | 天堂亚洲免费视频 | 特黄特色大片免费播放器图片 | 东京无码熟妇人妻av在线网址 | 狠狠色丁香久久婷婷综合五月 | 夜夜影院未满十八勿进 | 97精品人妻一区二区三区香蕉 | 超碰97人人做人人爱少妇 | 色综合天天综合狠狠爱 | 精品 日韩 国产 欧美 视频 | 久久精品中文闷骚内射 | 日韩在线不卡免费视频一区 | 丁香花在线影院观看在线播放 | 亚洲熟熟妇xxxx | 亚洲国产日韩a在线播放 | 久久久亚洲欧洲日产国码αv | 99精品无人区乱码1区2区3区 | 香港三级日本三级妇三级 | 九月婷婷人人澡人人添人人爽 | 男女猛烈xx00免费视频试看 | 精品厕所偷拍各类美女tp嘘嘘 | 欧美 亚洲 国产 另类 | 青青久在线视频免费观看 | 亚洲区欧美区综合区自拍区 | 日本一区二区更新不卡 | 在线天堂新版最新版在线8 | 97久久超碰中文字幕 | 人人妻人人澡人人爽人人精品 | 成人精品视频一区二区三区尤物 | 欧美三级不卡在线观看 | 久久五月精品中文字幕 | 国产午夜福利100集发布 | 伊人久久大香线焦av综合影院 | 高清不卡一区二区三区 | 色综合久久88色综合天天 | 在线观看国产一区二区三区 | 久久亚洲中文字幕精品一区 | 国产成人久久精品流白浆 | 成人欧美一区二区三区黑人 | 中文字幕无码av波多野吉衣 | 欧美日韩综合一区二区三区 | 少妇太爽了在线观看 | 日产国产精品亚洲系列 | 欧美丰满熟妇xxxx | 久久精品人妻少妇一区二区三区 | 免费人成网站视频在线观看 | 国产真实伦对白全集 | 熟妇女人妻丰满少妇中文字幕 | 午夜成人1000部免费视频 | 亚洲精品午夜无码电影网 | 国内揄拍国内精品人妻 | 人妻人人添人妻人人爱 | 久久久久久a亚洲欧洲av冫 | 全球成人中文在线 | 日韩 欧美 动漫 国产 制服 | 少妇无码av无码专区在线观看 | 久久久久久国产精品无码下载 | 亚洲精品国产品国语在线观看 | 一本无码人妻在中文字幕免费 | 国产精品永久免费视频 | 粗大的内捧猛烈进出视频 | 色婷婷av一区二区三区之红樱桃 | 最近免费中文字幕中文高清百度 | 人人妻人人澡人人爽欧美一区 | 国产熟女一区二区三区四区五区 | 亚洲自偷自偷在线制服 | 波多野42部无码喷潮在线 | 成人一在线视频日韩国产 | 樱花草在线社区www | 色妞www精品免费视频 | 色婷婷综合激情综在线播放 | 久久无码专区国产精品s | 免费国产黄网站在线观看 | 亚洲国产精品久久久天堂 | 亚洲国产高清在线观看视频 | 1000部夫妻午夜免费 | 无遮挡国产高潮视频免费观看 | 精品久久久久久亚洲精品 | 国产午夜无码精品免费看 | 中文字幕精品av一区二区五区 | 久久综合激激的五月天 | 午夜精品一区二区三区在线观看 | 久久精品丝袜高跟鞋 | 老司机亚洲精品影院 | 国产午夜手机精彩视频 | 欧美精品一区二区精品久久 | 日本一区二区三区免费高清 | 色一情一乱一伦一区二区三欧美 | 激情综合激情五月俺也去 | 国产三级精品三级男人的天堂 | 狠狠亚洲超碰狼人久久 | 亚洲中文字幕av在天堂 | 98国产精品综合一区二区三区 | 天天拍夜夜添久久精品 | 西西人体www44rt大胆高清 | 在线看片无码永久免费视频 | ass日本丰满熟妇pics | 国产真实夫妇视频 | 国产成人一区二区三区在线观看 | √8天堂资源地址中文在线 | 人妻少妇精品无码专区动漫 | 美女极度色诱视频国产 | av无码久久久久不卡免费网站 | 少女韩国电视剧在线观看完整 | 日本精品久久久久中文字幕 | 人人爽人人爽人人片av亚洲 | 精品无码国产自产拍在线观看蜜 | 一本久久a久久精品亚洲 | 亚洲综合无码一区二区三区 | 亚洲成av人综合在线观看 | 一本色道久久综合亚洲精品不卡 | 成年女人永久免费看片 | 亚无码乱人伦一区二区 | 2020久久香蕉国产线看观看 | 亚洲爆乳无码专区 | 成熟妇人a片免费看网站 | 领导边摸边吃奶边做爽在线观看 | 特级做a爰片毛片免费69 | 亚洲精品综合一区二区三区在线 | 国产精品无码一区二区三区不卡 | 免费播放一区二区三区 | 精品水蜜桃久久久久久久 | 黄网在线观看免费网站 | 日欧一片内射va在线影院 | 国产午夜无码精品免费看 | 欧美色就是色 | 成人无码视频在线观看网站 | 国产真人无遮挡作爱免费视频 | 欧美自拍另类欧美综合图片区 | 久久久久se色偷偷亚洲精品av | 色老头在线一区二区三区 | 少女韩国电视剧在线观看完整 | 国产成人综合色在线观看网站 | 精品国产成人一区二区三区 | 爆乳一区二区三区无码 | 国产无遮挡又黄又爽免费视频 | 日本va欧美va欧美va精品 | 内射白嫩少妇超碰 | 国内精品久久毛片一区二区 | 欧美国产日产一区二区 | 强开小婷嫩苞又嫩又紧视频 | www成人国产高清内射 | 青春草在线视频免费观看 | 久久人人爽人人爽人人片ⅴ | 男女下面进入的视频免费午夜 | 成熟妇人a片免费看网站 | 亚洲精品综合一区二区三区在线 | 午夜精品一区二区三区的区别 | 任你躁国产自任一区二区三区 | 欧美日韩亚洲国产精品 | 亚洲精品国产a久久久久久 | 欧美黑人性暴力猛交喷水 | www国产亚洲精品久久网站 | 国产香蕉97碰碰久久人人 | 无码国产激情在线观看 | 日韩av无码一区二区三区 | 宝宝好涨水快流出来免费视频 | 久久久婷婷五月亚洲97号色 | 久久久久久久久蜜桃 | 国产午夜手机精彩视频 | 亚洲精品一区二区三区在线 | 西西人体www44rt大胆高清 | 国精品人妻无码一区二区三区蜜柚 | 丰满诱人的人妻3 | 久久精品国产一区二区三区肥胖 | 国产偷抇久久精品a片69 | 成年美女黄网站色大免费视频 | 蜜桃视频韩日免费播放 | 国产乱人偷精品人妻a片 | 色综合视频一区二区三区 | 欧美一区二区三区视频在线观看 | 丰满妇女强制高潮18xxxx | 人人爽人人澡人人人妻 | 精品 日韩 国产 欧美 视频 | 日本一区二区三区免费播放 | 1000部夫妻午夜免费 | 熟女俱乐部五十路六十路av | 亚洲中文字幕在线观看 | 久久久久99精品成人片 | 欧美性黑人极品hd | 无码人妻黑人中文字幕 | 中文字幕亚洲情99在线 | 日本大乳高潮视频在线观看 | 丁香花在线影院观看在线播放 | 一个人看的www免费视频在线观看 | 亚洲精品成人av在线 | 夫妻免费无码v看片 | 国产激情精品一区二区三区 | 鲁鲁鲁爽爽爽在线视频观看 | 人人妻人人澡人人爽人人精品浪潮 | 欧美精品国产综合久久 | 午夜精品一区二区三区的区别 | 国产精品资源一区二区 | 日韩精品a片一区二区三区妖精 | 无码人妻丰满熟妇区毛片18 | 熟女体下毛毛黑森林 | 在线亚洲高清揄拍自拍一品区 | 综合激情五月综合激情五月激情1 | 色五月五月丁香亚洲综合网 | 人人澡人人透人人爽 | 中文字幕无码热在线视频 | 波多野结衣av一区二区全免费观看 | 性生交大片免费看女人按摩摩 | 国产深夜福利视频在线 | 国产xxx69麻豆国语对白 | 性史性农村dvd毛片 | 国精产品一品二品国精品69xx | 中文字幕无码免费久久99 | 国产内射老熟女aaaa | 亚洲精品www久久久 | 在线看片无码永久免费视频 | 无码人妻久久一区二区三区不卡 | 国产成人综合美国十次 | 综合网日日天干夜夜久久 | 国产成人精品久久亚洲高清不卡 | 99精品久久毛片a片 | 欧美freesex黑人又粗又大 | 国产熟女一区二区三区四区五区 | 精品国产av色一区二区深夜久久 | 成人免费视频一区二区 | 色情久久久av熟女人妻网站 | 国产精品鲁鲁鲁 | 日本熟妇人妻xxxxx人hd | 无码毛片视频一区二区本码 | 久久99精品久久久久久 | a在线观看免费网站大全 | 丰满人妻被黑人猛烈进入 | 性啪啪chinese东北女人 | 成人无码视频免费播放 | 人人妻人人澡人人爽欧美一区九九 | 无码人妻精品一区二区三区下载 | 国产色xx群视频射精 | 成人影院yy111111在线观看 | 六月丁香婷婷色狠狠久久 | 色妞www精品免费视频 | 一本无码人妻在中文字幕免费 | 麻豆国产人妻欲求不满 | 一本色道久久综合狠狠躁 | 人妻少妇精品久久 | 老太婆性杂交欧美肥老太 | 亚洲成av人在线观看网址 | 国产精品国产三级国产专播 | 亚洲色偷偷偷综合网 | 未满成年国产在线观看 | 乱码午夜-极国产极内射 | 麻豆蜜桃av蜜臀av色欲av | 性啪啪chinese东北女人 | 国产精品久久久午夜夜伦鲁鲁 | 国产精品人妻一区二区三区四 | 亚洲爆乳无码专区 | 久久精品中文字幕一区 | 午夜无码区在线观看 | 国精品人妻无码一区二区三区蜜柚 | 荫蒂添的好舒服视频囗交 | 国产猛烈高潮尖叫视频免费 | 久久精品中文字幕大胸 | 伊人久久大香线蕉av一区二区 | 亚洲乱码中文字幕在线 | 97无码免费人妻超级碰碰夜夜 | 无码人妻精品一区二区三区不卡 | 国产精品第一国产精品 | 亚洲欧美精品伊人久久 | 免费人成网站视频在线观看 | 大地资源网第二页免费观看 | 成人精品视频一区二区 | 亚洲中文字幕va福利 | 图片小说视频一区二区 | 国产人妻精品一区二区三区不卡 | 国产真实伦对白全集 | 激情人妻另类人妻伦 | 99精品视频在线观看免费 | 久久午夜无码鲁丝片午夜精品 | 亚欧洲精品在线视频免费观看 | 国产一区二区三区日韩精品 | 日本护士xxxxhd少妇 | 亚洲一区av无码专区在线观看 | 亚洲精品久久久久久久久久久 | 国产午夜精品一区二区三区嫩草 | 国内精品人妻无码久久久影院 | 亚洲精品一区二区三区在线 | 樱花草在线社区www | 无套内谢的新婚少妇国语播放 | 东京一本一道一二三区 | 99久久无码一区人妻 | 久久久精品国产sm最大网站 | 九月婷婷人人澡人人添人人爽 | 成年美女黄网站色大免费全看 | 少妇无码吹潮 | 少妇太爽了在线观看 | 奇米影视7777久久精品 | 在线а√天堂中文官网 | 一二三四社区在线中文视频 | 好男人www社区 | 色一情一乱一伦一视频免费看 | 中文字幕+乱码+中文字幕一区 | 亚洲一区二区三区 | 亚洲欧洲日本综合aⅴ在线 | 久久久久99精品国产片 | 一本加勒比波多野结衣 | 亚洲综合伊人久久大杳蕉 | 久久99精品国产.久久久久 | 国产在热线精品视频 | 亚洲va中文字幕无码久久不卡 | 麻豆人妻少妇精品无码专区 | 2020久久香蕉国产线看观看 | 成人欧美一区二区三区 | 国产成人精品久久亚洲高清不卡 | 欧美老人巨大xxxx做受 | 色综合久久久无码中文字幕 | 精品国产国产综合精品 | 国产色精品久久人妻 | 青青青手机频在线观看 | 久久国产劲爆∧v内射 | 亚洲天堂2017无码 | 国产高清av在线播放 | 无码人妻丰满熟妇区五十路百度 | 国产激情精品一区二区三区 | 麻豆国产97在线 | 欧洲 | 国产精品无码一区二区桃花视频 | 精品国产aⅴ无码一区二区 | 日本大香伊一区二区三区 | 欧美激情综合亚洲一二区 | 久久无码中文字幕免费影院蜜桃 | 国产激情艳情在线看视频 | 久久亚洲日韩精品一区二区三区 | 青青草原综合久久大伊人精品 | av无码电影一区二区三区 | 曰韩无码二三区中文字幕 | 国产成人精品视频ⅴa片软件竹菊 | 国产高清av在线播放 | 岛国片人妻三上悠亚 | 未满小14洗澡无码视频网站 | 亚洲精品国产品国语在线观看 | 中文字幕无码日韩欧毛 | 免费视频欧美无人区码 | 国产一区二区三区精品视频 | 亚洲国产精品久久久天堂 | 图片区 小说区 区 亚洲五月 | 久久国产36精品色熟妇 | 色婷婷欧美在线播放内射 | 男人扒开女人内裤强吻桶进去 | 久久久中文久久久无码 | 亚洲中文字幕乱码av波多ji | 婷婷色婷婷开心五月四房播播 | 亚洲日韩一区二区三区 | 亚洲爆乳大丰满无码专区 | 未满成年国产在线观看 | 精品水蜜桃久久久久久久 | 亚洲七七久久桃花影院 | 中文字幕无码免费久久99 | 欧美高清在线精品一区 | 日韩精品无码免费一区二区三区 | 人妻有码中文字幕在线 | 亚洲精品国偷拍自产在线麻豆 | 亚洲精品综合五月久久小说 | 女高中生第一次破苞av | 亚洲性无码av中文字幕 | 国产精品久久国产精品99 | 日本丰满护士爆乳xxxx | aa片在线观看视频在线播放 | 欧洲极品少妇 | 亚洲中文字幕在线观看 | 国产电影无码午夜在线播放 | 成人影院yy111111在线观看 | 天堂а√在线地址中文在线 | 久久www免费人成人片 | 麻豆国产丝袜白领秘书在线观看 | 亚洲第一网站男人都懂 | 狠狠色噜噜狠狠狠狠7777米奇 | 无码人妻av免费一区二区三区 | 亚洲精品一区二区三区在线 | 2020久久超碰国产精品最新 | 蜜臀aⅴ国产精品久久久国产老师 | 国产内射爽爽大片视频社区在线 | 欧美 日韩 人妻 高清 中文 | 日本精品高清一区二区 | 色一情一乱一伦一视频免费看 | 野外少妇愉情中文字幕 | 四虎影视成人永久免费观看视频 | 免费国产成人高清在线观看网站 | 免费无码的av片在线观看 | 一个人看的www免费视频在线观看 | 麻豆国产丝袜白领秘书在线观看 | 人妻中文无码久热丝袜 | 久久精品国产一区二区三区肥胖 | 丰满少妇熟乱xxxxx视频 | 欧美一区二区三区 | 久久亚洲中文字幕无码 | 四虎国产精品一区二区 | 亚洲国产精品久久久天堂 | 国产熟妇高潮叫床视频播放 | 十八禁真人啪啪免费网站 | 三级4级全黄60分钟 | 亚洲精品国偷拍自产在线观看蜜桃 | 亚洲中文字幕乱码av波多ji | 欧美午夜特黄aaaaaa片 | 中文字幕 亚洲精品 第1页 | 久久精品99久久香蕉国产色戒 | 国产人妻大战黑人第1集 | 亚洲熟妇自偷自拍另类 | 色综合久久久无码网中文 | 国产亚洲精品久久久ai换 | 欧美国产日产一区二区 | 色一情一乱一伦一区二区三欧美 | 蜜桃视频插满18在线观看 | 蜜桃视频韩日免费播放 | 国产一区二区三区影院 | 55夜色66夜色国产精品视频 | 精品一区二区三区无码免费视频 | www国产亚洲精品久久久日本 | 国产区女主播在线观看 | 国内综合精品午夜久久资源 | 99久久久国产精品无码免费 | 久久精品人人做人人综合试看 | 国产成人无码一二三区视频 | 丰满少妇人妻久久久久久 | 久久久久亚洲精品中文字幕 | 国产精品二区一区二区aⅴ污介绍 | 欧美肥老太牲交大战 | 人人爽人人爽人人片av亚洲 | 99久久精品国产一区二区蜜芽 | 日韩人妻系列无码专区 | 无码av最新清无码专区吞精 | 久久人人爽人人爽人人片av高清 | 无码人妻精品一区二区三区不卡 | 亚洲日本一区二区三区在线 | 人妻少妇被猛烈进入中文字幕 | 国产成人无码专区 | 久久精品无码一区二区三区 | 精品人妻中文字幕有码在线 | 色狠狠av一区二区三区 | 99久久人妻精品免费一区 | 免费无码午夜福利片69 | 欧美激情内射喷水高潮 | 一本色道久久综合狠狠躁 | 中文字幕人妻丝袜二区 | 国产午夜福利100集发布 | 亚洲色偷偷偷综合网 | 国产精品爱久久久久久久 | 亚洲国产午夜精品理论片 | 国产av久久久久精东av | 欧美三级a做爰在线观看 | 亚洲第一网站男人都懂 | 正在播放老肥熟妇露脸 | 精品成人av一区二区三区 | 亚洲精品综合一区二区三区在线 | 国产精品人人爽人人做我的可爱 | 国产热a欧美热a在线视频 | 午夜精品久久久内射近拍高清 | 国产av人人夜夜澡人人爽麻豆 | 日韩精品无码一区二区中文字幕 | 亚洲成av人在线观看网址 | 天天做天天爱天天爽综合网 | 女人被爽到呻吟gif动态图视看 | 亚洲乱码中文字幕在线 | 免费人成网站视频在线观看 | 欧美日本精品一区二区三区 | 精品无码国产自产拍在线观看蜜 | 久久亚洲精品中文字幕无男同 | 国产人妻人伦精品 | 成人无码精品1区2区3区免费看 | 午夜肉伦伦影院 | 高清不卡一区二区三区 | 国产激情无码一区二区 | 老熟妇乱子伦牲交视频 | 精品国产青草久久久久福利 | 久久精品中文闷骚内射 | 99久久精品无码一区二区毛片 | 曰本女人与公拘交酡免费视频 | 日韩亚洲欧美中文高清在线 | 亚洲综合久久一区二区 | 欧美乱妇无乱码大黄a片 | √天堂资源地址中文在线 | 中国女人内谢69xxxx | 亚洲精品国偷拍自产在线麻豆 | 激情爆乳一区二区三区 | 精品无人区无码乱码毛片国产 | 熟妇人妻激情偷爽文 | 97夜夜澡人人爽人人喊中国片 | 青春草在线视频免费观看 | 免费观看激色视频网站 | 久久国内精品自在自线 | 98国产精品综合一区二区三区 | 特级做a爰片毛片免费69 | 国产乱人伦av在线无码 | 妺妺窝人体色www婷婷 | 国内精品人妻无码久久久影院 | 精品国产一区二区三区四区在线看 | 亚洲精品午夜无码电影网 | 亚洲精品国产第一综合99久久 | 人妻夜夜爽天天爽三区 | 国产黄在线观看免费观看不卡 | 一本色道久久综合亚洲精品不卡 | 97夜夜澡人人双人人人喊 | 日本熟妇乱子伦xxxx | 亚洲爆乳大丰满无码专区 | 99麻豆久久久国产精品免费 | 永久免费观看美女裸体的网站 | 国内精品人妻无码久久久影院蜜桃 | 中文字幕av日韩精品一区二区 | 激情综合激情五月俺也去 | 又湿又紧又大又爽a视频国产 | 永久免费观看国产裸体美女 | 久久久久99精品国产片 | 亚洲熟女一区二区三区 | 一个人看的www免费视频在线观看 | 亚洲高清偷拍一区二区三区 | 在线精品亚洲一区二区 | 美女张开腿让人桶 | 久久久久久久女国产乱让韩 | 99精品视频在线观看免费 | 亚洲精品午夜国产va久久成人 | 嫩b人妻精品一区二区三区 | 欧洲熟妇色 欧美 | 99久久99久久免费精品蜜桃 | 国产97在线 | 亚洲 | 中文字幕日产无线码一区 | 亚洲一区二区三区在线观看网站 | 少妇邻居内射在线 | 欧美兽交xxxx×视频 | 婷婷色婷婷开心五月四房播播 | 一本久久a久久精品亚洲 | 欧洲精品码一区二区三区免费看 | 学生妹亚洲一区二区 | 欧美人与禽猛交狂配 | 亚洲а∨天堂久久精品2021 | 青青久在线视频免费观看 | 蜜桃臀无码内射一区二区三区 | 在线成人www免费观看视频 | 国产精品久久久久久无码 | 久久亚洲精品成人无码 | 中文字幕中文有码在线 | 国产无套粉嫩白浆在线 | 青草视频在线播放 | 四虎永久在线精品免费网址 | 无码av免费一区二区三区试看 | 亚洲人成人无码网www国产 | 亚洲精品国产精品乱码不卡 | 澳门永久av免费网站 | 日韩欧美群交p片內射中文 | 极品尤物被啪到呻吟喷水 | 亚洲一区二区三区含羞草 | 欧美熟妇另类久久久久久不卡 | 无码人妻av免费一区二区三区 | а√资源新版在线天堂 | 中文字幕av伊人av无码av | 天下第一社区视频www日本 | 国产精品久久久久7777 | 日韩av激情在线观看 | 俺去俺来也在线www色官网 | 久久久中文久久久无码 | 欧美国产日韩亚洲中文 | 丰满人妻被黑人猛烈进入 | 国产人妖乱国产精品人妖 | 九九热爱视频精品 | 黑人玩弄人妻中文在线 | 99视频精品全部免费免费观看 | 欧美丰满熟妇xxxx | 欧美野外疯狂做受xxxx高潮 | 色综合久久久久综合一本到桃花网 | 亚洲精品国产a久久久久久 | 久久人人爽人人人人片 | 成人无码精品一区二区三区 | 日日麻批免费40分钟无码 | 久青草影院在线观看国产 | 天干天干啦夜天干天2017 | 亚洲日韩中文字幕在线播放 | 乱人伦中文视频在线观看 | 狠狠综合久久久久综合网 | 久久人人爽人人爽人人片av高清 | 午夜熟女插插xx免费视频 | av在线亚洲欧洲日产一区二区 | 无码av免费一区二区三区试看 | 国产激情一区二区三区 | 丰满人妻一区二区三区免费视频 | 国产精品爱久久久久久久 | 日韩在线不卡免费视频一区 | 99久久婷婷国产综合精品青草免费 | 任你躁国产自任一区二区三区 | 亚洲人交乣女bbw | 久久99精品久久久久久动态图 | aa片在线观看视频在线播放 | 人妻插b视频一区二区三区 | 少妇性l交大片 | 久久精品一区二区三区四区 | 国产午夜亚洲精品不卡下载 | 日韩人妻少妇一区二区三区 | 一区二区三区乱码在线 | 欧洲 | 在线精品国产一区二区三区 | 国产猛烈高潮尖叫视频免费 | 欧美人与牲动交xxxx | 奇米影视7777久久精品 | 亚洲 激情 小说 另类 欧美 | 天堂亚洲2017在线观看 | 红桃av一区二区三区在线无码av | 天海翼激烈高潮到腰振不止 | 成在人线av无码免费 | 国产精品久久久久无码av色戒 | 精品人妻人人做人人爽 | 一本大道久久东京热无码av | 亚洲中文字幕无码中文字在线 | 又紧又大又爽精品一区二区 | 双乳奶水饱满少妇呻吟 | 精品久久久久久亚洲精品 | 日韩亚洲欧美精品综合 | 午夜精品一区二区三区在线观看 | 荫蒂被男人添的好舒服爽免费视频 | 自拍偷自拍亚洲精品10p | 久久综合香蕉国产蜜臀av | 久久亚洲中文字幕精品一区 | 亚洲日韩av一区二区三区四区 | 双乳奶水饱满少妇呻吟 | 久久久久久av无码免费看大片 | 国产精品久久久 | 网友自拍区视频精品 | 久久人人爽人人爽人人片av高清 | 精品国产一区二区三区四区 | 荫蒂添的好舒服视频囗交 | 一本久道久久综合狠狠爱 | 免费国产成人高清在线观看网站 | 成人片黄网站色大片免费观看 | 国产suv精品一区二区五 | 国产亚洲美女精品久久久2020 | 久久综合香蕉国产蜜臀av | 成人性做爰aaa片免费看不忠 | 国产成人人人97超碰超爽8 | 亚洲日韩av片在线观看 | 任你躁国产自任一区二区三区 | 中国女人内谢69xxxxxa片 | 久久天天躁夜夜躁狠狠 | 中文字幕日产无线码一区 | 三上悠亚人妻中文字幕在线 | 久久综合给合久久狠狠狠97色 | 成人影院yy111111在线观看 | 噜噜噜亚洲色成人网站 | 任你躁国产自任一区二区三区 | 女人被男人躁得好爽免费视频 | 成熟女人特级毛片www免费 | 色综合久久网 | 东京热男人av天堂 | 精品日本一区二区三区在线观看 | 国产情侣作爱视频免费观看 | 亚洲国产av美女网站 | 日本欧美一区二区三区乱码 | 无码毛片视频一区二区本码 | 色欲人妻aaaaaaa无码 | 国产精品va在线观看无码 | 午夜男女很黄的视频 | 又大又紧又粉嫩18p少妇 | 亚洲日韩乱码中文无码蜜桃臀网站 | 国产真实夫妇视频 | 好男人www社区 | 成人欧美一区二区三区黑人免费 | 亚洲国产精品无码久久久久高潮 | 国产va免费精品观看 | 亚洲色无码一区二区三区 | 国产精品怡红院永久免费 | 欧美人妻一区二区三区 | 国产精品丝袜黑色高跟鞋 | 欧美老妇交乱视频在线观看 | 国产女主播喷水视频在线观看 | 亚洲中文字幕无码中字 | 人人澡人人妻人人爽人人蜜桃 | 欧美丰满少妇xxxx性 | 成人免费无码大片a毛片 | 亚洲一区二区三区含羞草 | 国产精品丝袜黑色高跟鞋 | 久久久国产精品无码免费专区 | 亚洲成av人在线观看网址 | 正在播放东北夫妻内射 | 久久久国产一区二区三区 | 76少妇精品导航 | 人妻体内射精一区二区三四 | 真人与拘做受免费视频 | 奇米影视7777久久精品人人爽 | 18无码粉嫩小泬无套在线观看 | 久久精品国产99精品亚洲 | 97人妻精品一区二区三区 | 欧美亚洲国产一区二区三区 | 欧美成人高清在线播放 | 久久99精品久久久久久动态图 | 18精品久久久无码午夜福利 | 国内丰满熟女出轨videos | 久久伊人色av天堂九九小黄鸭 | 无套内谢老熟女 | 精品国产精品久久一区免费式 | 美女毛片一区二区三区四区 | 久久www免费人成人片 | 亚洲の无码国产の无码影院 | 色婷婷av一区二区三区之红樱桃 | 中文字幕乱码亚洲无线三区 | 色五月丁香五月综合五月 | 思思久久99热只有频精品66 | 小sao货水好多真紧h无码视频 | 精品国产福利一区二区 | 水蜜桃亚洲一二三四在线 | 亚洲成av人片天堂网无码】 | 国产精品亚洲专区无码不卡 | 大肉大捧一进一出好爽视频 | 欧美 亚洲 国产 另类 | 美女黄网站人色视频免费国产 | 熟妇激情内射com | 亚洲人亚洲人成电影网站色 | 色诱久久久久综合网ywww | 中文精品无码中文字幕无码专区 | 亚洲熟熟妇xxxx | av无码电影一区二区三区 | 久久国产精品偷任你爽任你 | 人妻少妇精品无码专区动漫 | 国产三级精品三级男人的天堂 | 无遮无挡爽爽免费视频 | 性生交片免费无码看人 | 精品国产精品久久一区免费式 | 国产明星裸体无码xxxx视频 | 国产成人综合在线女婷五月99播放 | 国产精品美女久久久 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 大地资源网第二页免费观看 | 国产农村妇女高潮大叫 | 亚洲va欧美va天堂v国产综合 | 亚洲无人区午夜福利码高清完整版 | 亚洲国产欧美日韩精品一区二区三区 | 51国偷自产一区二区三区 | 欧美freesex黑人又粗又大 | 亚洲熟熟妇xxxx | 国产色视频一区二区三区 | 中文字幕久久久久人妻 | 天干天干啦夜天干天2017 | 性欧美牲交xxxxx视频 | 久久久精品成人免费观看 | 国产偷国产偷精品高清尤物 | 玩弄人妻少妇500系列视频 | 国产乱人无码伦av在线a | 欧美午夜特黄aaaaaa片 | 亚洲人成网站色7799 | 澳门永久av免费网站 | 国产艳妇av在线观看果冻传媒 | 亚洲欧洲无卡二区视頻 | 日韩av激情在线观看 | 动漫av一区二区在线观看 | 国产精品怡红院永久免费 | 精品欧美一区二区三区久久久 | 少妇一晚三次一区二区三区 | yw尤物av无码国产在线观看 | 久久久精品欧美一区二区免费 | 国产精品久久福利网站 | 天堂无码人妻精品一区二区三区 | 国产午夜手机精彩视频 | 久久精品人人做人人综合试看 | 婷婷丁香五月天综合东京热 | 人人妻人人藻人人爽欧美一区 | 在线成人www免费观看视频 | 精品无人国产偷自产在线 | 亚洲小说春色综合另类 | 欧美性猛交内射兽交老熟妇 | 中文久久乱码一区二区 | 香港三级日本三级妇三级 | 国产超级va在线观看视频 | 玩弄中年熟妇正在播放 | 欧美熟妇另类久久久久久不卡 | 狠狠cao日日穞夜夜穞av | 日韩 欧美 动漫 国产 制服 | 中文字幕人妻丝袜二区 | 蜜桃无码一区二区三区 | 成 人 免费观看网站 | 成 人 网 站国产免费观看 | 国产成人人人97超碰超爽8 | 免费无码的av片在线观看 | 国产精品99久久精品爆乳 | 奇米影视7777久久精品人人爽 | 中文字幕人妻丝袜二区 | 欧美xxxxx精品 | 99国产精品白浆在线观看免费 | 国模大胆一区二区三区 | 久久久久av无码免费网 | 亚洲日韩乱码中文无码蜜桃臀网站 | 东京无码熟妇人妻av在线网址 | 国产婷婷色一区二区三区在线 | 无码人妻久久一区二区三区不卡 | 少妇一晚三次一区二区三区 | 久久人人爽人人爽人人片av高清 | 国产成人精品三级麻豆 | 久久精品无码一区二区三区 | 极品尤物被啪到呻吟喷水 | 久久99精品久久久久久动态图 | 一本色道久久综合狠狠躁 | 2019nv天堂香蕉在线观看 | 久久精品一区二区三区四区 | 免费无码肉片在线观看 | 久久亚洲国产成人精品性色 | 久久精品国产精品国产精品污 | 亚洲综合另类小说色区 | 又湿又紧又大又爽a视频国产 | 亚洲欧洲无卡二区视頻 | 欧美老熟妇乱xxxxx | 无码人妻丰满熟妇区五十路百度 | 色综合久久中文娱乐网 | 在线看片无码永久免费视频 | 亚洲午夜福利在线观看 | 亚洲第一无码av无码专区 | 国产精品va在线观看无码 | 国产人妻大战黑人第1集 | 天天摸天天透天天添 | 领导边摸边吃奶边做爽在线观看 | 久久精品女人的天堂av | 未满成年国产在线观看 | 国产人妻人伦精品1国产丝袜 | 久久无码中文字幕免费影院蜜桃 | 清纯唯美经典一区二区 | 日本xxxx色视频在线观看免费 | 377p欧洲日本亚洲大胆 | 日韩精品无码免费一区二区三区 | 香港三级日本三级妇三级 | 人人爽人人爽人人片av亚洲 | 亚洲国产高清在线观看视频 | 亚洲s色大片在线观看 | 欧美xxxxx精品 | 午夜福利试看120秒体验区 | 国产精品国产自线拍免费软件 | 熟女俱乐部五十路六十路av | 久久久久久国产精品无码下载 | 亚拍精品一区二区三区探花 | 精品无码成人片一区二区98 | 午夜精品一区二区三区在线观看 | 欧美日本免费一区二区三区 | 午夜不卡av免费 一本久久a久久精品vr综合 | 国产人妖乱国产精品人妖 | 精品国产国产综合精品 | 亚洲日本va午夜在线电影 | 日本乱偷人妻中文字幕 | 欧洲熟妇精品视频 | 精品久久久久香蕉网 | 帮老师解开蕾丝奶罩吸乳网站 | 妺妺窝人体色www在线小说 | 久久无码专区国产精品s | 中文无码伦av中文字幕 | 特黄特色大片免费播放器图片 | 国产猛烈高潮尖叫视频免费 | 国产精品久久福利网站 | 一本久道高清无码视频 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 亚洲精品一区二区三区在线 | 黑人巨大精品欧美黑寡妇 | 内射欧美老妇wbb | 波多野结衣av在线观看 | 欧美成人午夜精品久久久 | 中文精品无码中文字幕无码专区 | 亚洲国产精品成人久久蜜臀 | 少妇厨房愉情理9仑片视频 | 亚洲最大成人网站 | 少妇邻居内射在线 | 久久午夜无码鲁丝片 | 无码免费一区二区三区 | 波多野结衣av一区二区全免费观看 | 欧美自拍另类欧美综合图片区 | 无码人妻黑人中文字幕 | 久久精品国产一区二区三区肥胖 | 午夜理论片yy44880影院 | 欧美35页视频在线观看 | 国产99久久精品一区二区 | 亚洲欧美中文字幕5发布 | 亚洲va中文字幕无码久久不卡 | 欧美阿v高清资源不卡在线播放 | 国产极品美女高潮无套在线观看 | 国产成人无码区免费内射一片色欲 | 福利一区二区三区视频在线观看 | 在线精品亚洲一区二区 | 亚洲综合精品香蕉久久网 | 无码一区二区三区在线观看 | 扒开双腿疯狂进出爽爽爽视频 | 亚洲aⅴ无码成人网站国产app | 亚洲人成影院在线无码按摩店 | 国产亚洲精品久久久久久国模美 | 国内精品久久久久久中文字幕 | 色综合天天综合狠狠爱 | 久久午夜无码鲁丝片秋霞 | 性欧美熟妇videofreesex | 亚洲gv猛男gv无码男同 | 亚洲性无码av中文字幕 | 午夜精品久久久内射近拍高清 | 久精品国产欧美亚洲色aⅴ大片 | 麻豆国产人妻欲求不满 | 给我免费的视频在线观看 | 国产性生大片免费观看性 | 少妇无套内谢久久久久 | 亚洲狠狠色丁香婷婷综合 | 99久久亚洲精品无码毛片 | 国内揄拍国内精品少妇国语 | 国产日产欧产精品精品app | 国产精品二区一区二区aⅴ污介绍 | 内射爽无广熟女亚洲 | 377p欧洲日本亚洲大胆 | 动漫av一区二区在线观看 | 国产九九九九九九九a片 | 日本饥渴人妻欲求不满 | 丁香啪啪综合成人亚洲 | 精品偷自拍另类在线观看 | 精品亚洲韩国一区二区三区 | 亚洲综合色区中文字幕 | 亚洲色成人中文字幕网站 | 十八禁视频网站在线观看 | 国产性生大片免费观看性 | 国产在线精品一区二区三区直播 | 亚洲日韩乱码中文无码蜜桃臀网站 | 国内精品九九久久久精品 | 未满成年国产在线观看 | 国产精品久久福利网站 | 欧美刺激性大交 | 色欲久久久天天天综合网精品 | 国产午夜视频在线观看 | 国产国语老龄妇女a片 | 99久久精品午夜一区二区 | 在线欧美精品一区二区三区 | 久久综合九色综合97网 | 国产亚洲人成在线播放 | 99精品国产综合久久久久五月天 | 精品久久8x国产免费观看 | 国产精品无码mv在线观看 | 国产9 9在线 | 中文 | 国产乱人无码伦av在线a | 国产香蕉尹人视频在线 | 东京一本一道一二三区 | 国产99久久精品一区二区 | 高清无码午夜福利视频 | 欧美自拍另类欧美综合图片区 | 在线观看欧美一区二区三区 | 麻豆av传媒蜜桃天美传媒 | 国产sm调教视频在线观看 | 亚洲精品综合一区二区三区在线 | 国产午夜手机精彩视频 | 国产无套粉嫩白浆在线 | 男女下面进入的视频免费午夜 | 婷婷综合久久中文字幕蜜桃三电影 | 国产suv精品一区二区五 | 国产片av国语在线观看 | 日韩欧美中文字幕在线三区 | 亚洲综合在线一区二区三区 | 欧美真人作爱免费视频 | 野狼第一精品社区 | 好爽又高潮了毛片免费下载 | 99精品国产综合久久久久五月天 | 中文字幕乱码人妻二区三区 | 国产麻豆精品一区二区三区v视界 | 国产精品无套呻吟在线 | 亚洲 a v无 码免 费 成 人 a v | 国产成人无码av在线影院 | 青青草原综合久久大伊人精品 | 成在人线av无码免费 | 久久亚洲日韩精品一区二区三区 | 又大又紧又粉嫩18p少妇 | 人妻无码久久精品人妻 | 亚洲欧美精品aaaaaa片 | a片免费视频在线观看 | 黑人玩弄人妻中文在线 | 国产人成高清在线视频99最全资源 | 波多野结衣aⅴ在线 | 亚洲成熟女人毛毛耸耸多 | 色情久久久av熟女人妻网站 | 丰满少妇高潮惨叫视频 | 成人精品视频一区二区 | 欧美黑人乱大交 | 少妇厨房愉情理9仑片视频 | 永久免费观看美女裸体的网站 | 午夜精品久久久久久久久 | 夫妻免费无码v看片 | 久久综合九色综合97网 | 日日碰狠狠丁香久燥 | 色欲综合久久中文字幕网 | 97人妻精品一区二区三区 | 国产精品久久久久久亚洲毛片 | 在线精品亚洲一区二区 | 99久久99久久免费精品蜜桃 | 初尝人妻少妇中文字幕 | 日日鲁鲁鲁夜夜爽爽狠狠 | 玩弄少妇高潮ⅹxxxyw | 久久久久99精品国产片 | 国产成人人人97超碰超爽8 | 国产精品怡红院永久免费 | 欧美放荡的少妇 | 日本肉体xxxx裸交 | 无码精品人妻一区二区三区av | 撕开奶罩揉吮奶头视频 | 人妻少妇精品久久 | 色综合久久久无码网中文 | 国产做国产爱免费视频 | 精品久久久久久亚洲精品 | 日本精品少妇一区二区三区 | 国产精品自产拍在线观看 | 中文字幕久久久久人妻 | 亚洲精品鲁一鲁一区二区三区 | 2020久久超碰国产精品最新 | 内射欧美老妇wbb | 蜜桃视频插满18在线观看 | 欧美 日韩 人妻 高清 中文 | 99久久亚洲精品无码毛片 | 国产成人无码a区在线观看视频app | 99国产欧美久久久精品 | 国产一区二区三区日韩精品 | 国产乱人伦偷精品视频 | 女高中生第一次破苞av | 精品偷拍一区二区三区在线看 | 国产精品久久久久7777 | 久久 国产 尿 小便 嘘嘘 | 精品人人妻人人澡人人爽人人 | 国产激情艳情在线看视频 | 在线看片无码永久免费视频 | av无码电影一区二区三区 | 麻豆md0077饥渴少妇 | 少妇高潮喷潮久久久影院 | 日韩精品无码一区二区中文字幕 | 亚洲精品中文字幕乱码 | 无码av岛国片在线播放 | 成熟妇人a片免费看网站 | 国产欧美熟妇另类久久久 | 欧美 亚洲 国产 另类 | 国产艳妇av在线观看果冻传媒 | 国产亚洲视频中文字幕97精品 | 日本护士xxxxhd少妇 | 国产精品久久久久9999小说 | 无码成人精品区在线观看 | 美女毛片一区二区三区四区 | 精品日本一区二区三区在线观看 | 未满成年国产在线观看 | 亚洲精品国偷拍自产在线观看蜜桃 | 国产亚洲美女精品久久久2020 | 狠狠综合久久久久综合网 | 人妻夜夜爽天天爽三区 | 妺妺窝人体色www婷婷 | 在线亚洲高清揄拍自拍一品区 | 亚洲欧美日韩成人高清在线一区 | 日韩 欧美 动漫 国产 制服 | 精品乱码久久久久久久 | 扒开双腿疯狂进出爽爽爽视频 | 久久 国产 尿 小便 嘘嘘 | 日韩视频 中文字幕 视频一区 | 伦伦影院午夜理论片 | 伦伦影院午夜理论片 | 亚洲经典千人经典日产 | 国产成人无码区免费内射一片色欲 | 99久久人妻精品免费一区 | 亚洲s码欧洲m码国产av | 亚洲日本一区二区三区在线 | 亚洲狠狠婷婷综合久久 | 亚洲成a人片在线观看无码 | 无人区乱码一区二区三区 | 亚洲国产精品一区二区美利坚 | 亚洲日韩一区二区三区 | 欧美猛少妇色xxxxx | 最近的中文字幕在线看视频 | 国产精品福利视频导航 | 四虎永久在线精品免费网址 | 久久精品人人做人人综合 | 荫蒂被男人添的好舒服爽免费视频 | 高清不卡一区二区三区 | 午夜精品一区二区三区在线观看 | 久久久久久久女国产乱让韩 | 网友自拍区视频精品 | 欧美日本精品一区二区三区 | 亚无码乱人伦一区二区 | 人妻体内射精一区二区三四 | 亚洲精品中文字幕久久久久 | 国精产品一品二品国精品69xx | 无码中文字幕色专区 | 国内揄拍国内精品人妻 | 思思久久99热只有频精品66 | 少妇无码一区二区二三区 | 精品乱子伦一区二区三区 | 亚洲小说图区综合在线 | 亚洲中文字幕乱码av波多ji | 日日噜噜噜噜夜夜爽亚洲精品 | 国产 浪潮av性色四虎 | 亚洲熟妇色xxxxx欧美老妇 | 国产两女互慰高潮视频在线观看 | 亚洲伊人久久精品影院 | 欧美一区二区三区视频在线观看 | 欧洲vodafone精品性 | 在线观看国产午夜福利片 | 未满成年国产在线观看 | 老司机亚洲精品影院 | 啦啦啦www在线观看免费视频 | 精品熟女少妇av免费观看 | 在线播放免费人成毛片乱码 | 老熟妇乱子伦牲交视频 | 亚洲国产精华液网站w | 亚洲精品午夜无码电影网 | 亚洲日本va午夜在线电影 | 久久99国产综合精品 | 国产欧美熟妇另类久久久 | 精品成在人线av无码免费看 | 学生妹亚洲一区二区 | 成人欧美一区二区三区 | 日本xxxx色视频在线观看免费 | 亚洲精品国产品国语在线观看 | 久久久久久国产精品无码下载 | 日本大乳高潮视频在线观看 | 亚洲狠狠色丁香婷婷综合 | 亚洲 欧美 激情 小说 另类 | 欧美日本免费一区二区三区 | 亚洲综合在线一区二区三区 | 人人爽人人爽人人片av亚洲 | 色婷婷综合中文久久一本 | 久久99热只有频精品8 | 久久精品人人做人人综合试看 | 亚洲男女内射在线播放 | 1000部夫妻午夜免费 | 日韩精品a片一区二区三区妖精 | a片在线免费观看 | 澳门永久av免费网站 | 亚洲 激情 小说 另类 欧美 | 四虎国产精品免费久久 | 国产精品无码mv在线观看 | 在线观看欧美一区二区三区 | 亚洲中文无码av永久不收费 | 国产成人一区二区三区别 | 无码纯肉视频在线观看 | 亚洲日韩中文字幕在线播放 | 国产精品无码一区二区桃花视频 | 少妇被粗大的猛进出69影院 | 又大又硬又爽免费视频 | 国产精品无码久久av | 青青青爽视频在线观看 | 亚洲日韩av一区二区三区中文 | 久久综合给久久狠狠97色 | 天堂а√在线地址中文在线 | 国产高清不卡无码视频 | 久久久久亚洲精品男人的天堂 | 色五月丁香五月综合五月 | 少妇性俱乐部纵欲狂欢电影 | 久久久久成人精品免费播放动漫 | 精品久久久中文字幕人妻 | 国产人妻人伦精品1国产丝袜 | 欧美丰满少妇xxxx性 | 在线天堂新版最新版在线8 | 午夜时刻免费入口 | 性欧美大战久久久久久久 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 国产亚洲精品久久久久久久 | 精品国产成人一区二区三区 | 帮老师解开蕾丝奶罩吸乳网站 | 久久久久久久久888 | √天堂资源地址中文在线 | 欧美xxxxx精品 | 成人精品视频一区二区 | 亚洲乱码日产精品bd | 久久久久成人片免费观看蜜芽 | 国产特级毛片aaaaaa高潮流水 | 日本饥渴人妻欲求不满 | 国产电影无码午夜在线播放 | 亚洲小说图区综合在线 | 亚洲欧美日韩综合久久久 | 久久综合香蕉国产蜜臀av | 国产午夜福利100集发布 | 狠狠色噜噜狠狠狠狠7777米奇 | 中文字幕无码免费久久9一区9 | 精品少妇爆乳无码av无码专区 | 国产办公室秘书无码精品99 | 久久人人爽人人爽人人片ⅴ | 1000部夫妻午夜免费 | 久久久久久九九精品久 | 成人三级无码视频在线观看 | 国产真人无遮挡作爱免费视频 | 亚洲精品一区二区三区大桥未久 | 麻豆果冻传媒2021精品传媒一区下载 | 在线看片无码永久免费视频 | 精品无码国产自产拍在线观看蜜 | 国产又爽又猛又粗的视频a片 | 牲交欧美兽交欧美 | 乌克兰少妇xxxx做受 | 久久五月精品中文字幕 | 中文字幕乱码人妻无码久久 | 亚洲男人av香蕉爽爽爽爽 | 激情内射日本一区二区三区 | www国产亚洲精品久久久日本 | 奇米影视7777久久精品 | 欧美刺激性大交 | 未满小14洗澡无码视频网站 | 国产成人精品一区二区在线小狼 | 亚无码乱人伦一区二区 | 亚洲自偷自偷在线制服 | 动漫av一区二区在线观看 | 国产精品福利视频导航 | 无码国产激情在线观看 | 国产成人综合在线女婷五月99播放 | 国产香蕉97碰碰久久人人 | 久久综合给合久久狠狠狠97色 | 无遮挡国产高潮视频免费观看 | 亚洲精品国偷拍自产在线麻豆 | 黄网在线观看免费网站 | 亚洲理论电影在线观看 | 亚洲乱码日产精品bd | 精品人人妻人人澡人人爽人人 | 亚洲综合色区中文字幕 | 无遮挡国产高潮视频免费观看 | 成人性做爰aaa片免费看不忠 | 国产精品久久久久7777 | 一本色道久久综合狠狠躁 | 亚洲日韩一区二区 | 国产艳妇av在线观看果冻传媒 | 久久99精品久久久久久动态图 | 亚洲国产精品无码久久久久高潮 | 国产国产精品人在线视 | 日韩精品无码免费一区二区三区 | 久久精品国产大片免费观看 | 波多野结衣av在线观看 | 国产真实夫妇视频 | 日韩欧美中文字幕在线三区 | 午夜嘿嘿嘿影院 | 国产精品久久久久久亚洲影视内衣 | 性欧美大战久久久久久久 | 午夜精品久久久内射近拍高清 | 嫩b人妻精品一区二区三区 | 国产精品怡红院永久免费 | 婷婷六月久久综合丁香 | 国产情侣作爱视频免费观看 | 波多野42部无码喷潮在线 | 亚洲日韩av一区二区三区中文 | 精品久久久中文字幕人妻 | 77777熟女视频在线观看 а天堂中文在线官网 | 欧美日韩人成综合在线播放 | 在线看片无码永久免费视频 | 国产电影无码午夜在线播放 | 中文字幕人妻丝袜二区 | 真人与拘做受免费视频一 | 国产无套内射久久久国产 | 日本一区二区三区免费播放 | 亚洲一区二区三区香蕉 | 欧美黑人性暴力猛交喷水 | 久久综合色之久久综合 | 日韩av无码一区二区三区 | 76少妇精品导航 | 九月婷婷人人澡人人添人人爽 | 在线观看欧美一区二区三区 | 秋霞成人午夜鲁丝一区二区三区 | 爆乳一区二区三区无码 | 天天av天天av天天透 | 人人澡人摸人人添 | 精品人妻中文字幕有码在线 | 老熟妇仑乱视频一区二区 | 中文字幕精品av一区二区五区 | 欧美野外疯狂做受xxxx高潮 | 55夜色66夜色国产精品视频 | 天堂亚洲2017在线观看 | 国产高清av在线播放 | 少妇厨房愉情理9仑片视频 | 伊人久久大香线焦av综合影院 | 99久久婷婷国产综合精品青草免费 | 少妇被黑人到高潮喷出白浆 | 国产精品亚洲а∨无码播放麻豆 | 日本免费一区二区三区最新 | 国产成人精品一区二区在线小狼 | 中国大陆精品视频xxxx | 欧美午夜特黄aaaaaa片 | 国产亚洲人成在线播放 | 国产一区二区三区影院 | 久久无码中文字幕免费影院蜜桃 | 亚洲熟悉妇女xxx妇女av | 国产精品久久久久无码av色戒 | 午夜性刺激在线视频免费 | 鲁鲁鲁爽爽爽在线视频观看 | 中文字幕乱码中文乱码51精品 | 成人影院yy111111在线观看 | 亚洲欧美日韩综合久久久 | 久久国产精品二国产精品 | 国产无av码在线观看 | 免费无码午夜福利片69 | 成年美女黄网站色大免费全看 | 亚洲欧美国产精品专区久久 | 精品欧洲av无码一区二区三区 | 成人免费视频视频在线观看 免费 | 老司机亚洲精品影院 | 亚洲精品久久久久中文第一幕 | 性史性农村dvd毛片 | 色综合久久久久综合一本到桃花网 | 国产手机在线αⅴ片无码观看 | 亚洲理论电影在线观看 | 亚洲综合精品香蕉久久网 | 欧美午夜特黄aaaaaa片 | 一本色道久久综合狠狠躁 | 人人妻人人澡人人爽欧美精品 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 亚洲欧美日韩综合久久久 | 又湿又紧又大又爽a视频国产 | 国内精品人妻无码久久久影院蜜桃 | 扒开双腿吃奶呻吟做受视频 | 国产精品第一区揄拍无码 | 婷婷色婷婷开心五月四房播播 | 天堂а√在线地址中文在线 | 丰满肥臀大屁股熟妇激情视频 | 97久久精品无码一区二区 | 青草视频在线播放 | 亚洲国产成人a精品不卡在线 | 中文字幕中文有码在线 | 人妻少妇精品无码专区二区 | 欧美 亚洲 国产 另类 | 久久综合久久自在自线精品自 | 久久国产精品萌白酱免费 | 国产精品国产自线拍免费软件 | 乱人伦中文视频在线观看 | 蜜桃臀无码内射一区二区三区 | 黑人玩弄人妻中文在线 | 亚洲色大成网站www国产 | 久久精品国产日本波多野结衣 | 国产成人精品久久亚洲高清不卡 | 亚洲精品久久久久中文第一幕 | 精品久久久无码人妻字幂 | 亚洲日韩中文字幕在线播放 | 亚洲国产精品美女久久久久 | 亚洲一区二区三区国产精华液 | 水蜜桃亚洲一二三四在线 | 性色欲情网站iwww九文堂 | 美女毛片一区二区三区四区 | 久久人人97超碰a片精品 | 久久午夜无码鲁丝片秋霞 | 欧美日韩视频无码一区二区三 | 99精品无人区乱码1区2区3区 | 曰本女人与公拘交酡免费视频 | 久久精品国产日本波多野结衣 | 中文字幕乱码人妻无码久久 | 日韩欧美群交p片內射中文 | 捆绑白丝粉色jk震动捧喷白浆 | 无码成人精品区在线观看 | 性欧美疯狂xxxxbbbb | 高清无码午夜福利视频 | 精品一区二区三区无码免费视频 | 国产精品久久久久久久影院 | 98国产精品综合一区二区三区 | 国产精品久久久久无码av色戒 | 爱做久久久久久 | 人妻少妇被猛烈进入中文字幕 | 伊在人天堂亚洲香蕉精品区 | 精品厕所偷拍各类美女tp嘘嘘 | 少妇无码av无码专区在线观看 | 中文字幕无码乱人伦 | 无套内谢的新婚少妇国语播放 | 欧美日韩在线亚洲综合国产人 | 日韩少妇内射免费播放 | 国产精品亚洲专区无码不卡 | 亚欧洲精品在线视频免费观看 | 四虎国产精品一区二区 | 亚洲成a人片在线观看无码 | 最近免费中文字幕中文高清百度 | 久久久www成人免费毛片 | 蜜臀av在线观看 在线欧美精品一区二区三区 | av在线亚洲欧洲日产一区二区 | 女人高潮内射99精品 | 波多野结衣高清一区二区三区 | 午夜成人1000部免费视频 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 午夜精品久久久久久久 | 国产精品人人妻人人爽 | 永久黄网站色视频免费直播 | 亚洲色大成网站www | 野狼第一精品社区 | 国产综合久久久久鬼色 | 99精品久久毛片a片 | 偷窥村妇洗澡毛毛多 | 无码人妻久久一区二区三区不卡 | 少妇久久久久久人妻无码 | 亚洲成a人片在线观看日本 | 国产肉丝袜在线观看 | 18无码粉嫩小泬无套在线观看 | 色综合久久88色综合天天 | 人人妻在人人 | 一个人看的www免费视频在线观看 | 天天摸天天透天天添 | 扒开双腿吃奶呻吟做受视频 | 精品无码国产一区二区三区av | 中文毛片无遮挡高清免费 | 久久综合给合久久狠狠狠97色 | 大肉大捧一进一出视频出来呀 | 无码av中文字幕免费放 | 国产卡一卡二卡三 | 高潮喷水的毛片 | 久久精品中文字幕大胸 | 丝袜足控一区二区三区 | 中文字幕精品av一区二区五区 | 亚洲综合色区中文字幕 | 一个人看的www免费视频在线观看 | 婷婷丁香五月天综合东京热 | 香港三级日本三级妇三级 | 久久久精品456亚洲影院 | 亚洲狠狠婷婷综合久久 | 久久精品国产一区二区三区 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 国产精品-区区久久久狼 | 在线a亚洲视频播放在线观看 | 麻豆国产人妻欲求不满谁演的 | 色狠狠av一区二区三区 | 日韩成人一区二区三区在线观看 | 无码乱肉视频免费大全合集 | 国产va免费精品观看 | 免费网站看v片在线18禁无码 | 美女极度色诱视频国产 | 一个人看的www免费视频在线观看 | 国内精品一区二区三区不卡 | 77777熟女视频在线观看 а天堂中文在线官网 | 无码国模国产在线观看 | 超碰97人人做人人爱少妇 | 日韩人妻无码中文字幕视频 | 大地资源网第二页免费观看 | 亚洲精品成人福利网站 | 国产精品久久精品三级 | 久久久久久亚洲精品a片成人 | 亚洲精品成人福利网站 | 中文字幕人妻无码一区二区三区 | www成人国产高清内射 | 久久久亚洲欧洲日产国码αv | 久久精品国产99精品亚洲 | 亚洲乱码日产精品bd | 久久久www成人免费毛片 | 国产无遮挡又黄又爽免费视频 | 久久亚洲中文字幕无码 | 亚洲成av人影院在线观看 | 亚洲精品久久久久中文第一幕 | 国产激情综合五月久久 | 樱花草在线社区www | 天堂在线观看www | 亚洲人成网站免费播放 | 日欧一片内射va在线影院 | 欧美高清在线精品一区 | 国产极品美女高潮无套在线观看 | 日韩精品无码一本二本三本色 | 国产av久久久久精东av | √天堂中文官网8在线 | 亚洲中文字幕无码一久久区 | 国产精品久久久久久无码 | 美女扒开屁股让男人桶 | 亚洲色在线无码国产精品不卡 | 色诱久久久久综合网ywww | 久久综合九色综合欧美狠狠 | 亚洲 日韩 欧美 成人 在线观看 | 又大又紧又粉嫩18p少妇 | 国产乱人伦av在线无码 | 少妇愉情理伦片bd | 欧美熟妇另类久久久久久不卡 | 97色伦图片97综合影院 | 日本va欧美va欧美va精品 | 最近免费中文字幕中文高清百度 | 国产在线精品一区二区高清不卡 | 亚洲日韩一区二区三区 | 亚洲经典千人经典日产 | 免费观看又污又黄的网站 | 免费国产黄网站在线观看 | 中国女人内谢69xxxx | 综合网日日天干夜夜久久 | 日本欧美一区二区三区乱码 | 亚洲色在线无码国产精品不卡 | 伊在人天堂亚洲香蕉精品区 | 77777熟女视频在线观看 а天堂中文在线官网 | 中文字幕久久久久人妻 | 亚洲精品一区二区三区在线观看 | 国产av无码专区亚洲a∨毛片 | 婷婷六月久久综合丁香 | 国产精品人人妻人人爽 | 色一情一乱一伦 | 亚洲国产精品久久人人爱 | 亚洲春色在线视频 | 色综合久久久久综合一本到桃花网 | 人妻aⅴ无码一区二区三区 | 免费乱码人妻系列无码专区 | 久久国产自偷自偷免费一区调 | 久久久www成人免费毛片 | 久久99精品国产麻豆 | 亚洲国产精华液网站w | 精品国产一区av天美传媒 | 人人妻人人澡人人爽人人精品浪潮 | 狠狠亚洲超碰狼人久久 | 国产午夜无码精品免费看 | 人人妻人人澡人人爽欧美精品 | 亚洲色偷偷男人的天堂 | 三上悠亚人妻中文字幕在线 | 国产在热线精品视频 | 国产无av码在线观看 | 国产精品免费大片 | 成人毛片一区二区 | 啦啦啦www在线观看免费视频 | 午夜福利不卡在线视频 | 中文字幕乱妇无码av在线 | 精品日本一区二区三区在线观看 | 久久人人爽人人爽人人片av高清 | 欧美日韩一区二区三区自拍 | 麻豆国产97在线 | 欧洲 | 精品无码成人片一区二区98 | 无码吃奶揉捏奶头高潮视频 | 女人被男人爽到呻吟的视频 | 牲交欧美兽交欧美 | 亚洲中文字幕无码中字 | 亚洲欧洲中文日韩av乱码 | 荡女精品导航 | 国産精品久久久久久久 | 国产精品a成v人在线播放 |