TextPane2.IsVisible – metoda (TextPoint, Object)
Vrátí hodnotu označující, zda jsou zobrazeny v podokně textu znak nebo znaky zadané.
Obor názvů: EnvDTE80
Sestavení: EnvDTE80 (v EnvDTE80.dll)
Syntaxe
'Deklarace
Function IsVisible ( _
Point As TextPoint, _
PointOrCount As Object _
) As Boolean
bool IsVisible(
TextPoint Point,
Object PointOrCount
)
bool IsVisible(
[InAttribute] TextPoint^ Point,
[InAttribute] Object^ PointOrCount
)
abstract IsVisible :
Point:TextPoint *
PointOrCount:Object -> bool
function IsVisible(
Point : TextPoint,
PointOrCount : Object
) : boolean
Parametry
- Point
Typ: EnvDTE.TextPoint
Povinné.A TextPoint umístění slouží k určení, zda je zobrazen znak.Protože Point se nachází mezi dvěma znaky výklad výchozí (, kdy žádná hodnota je uvedena pro PointOrCount argument) je první znak napravo bod textu.Pokud znak za bod text viditelný, pak bude Point je zobrazen jako dobře.
- PointOrCount
Typ: System.Object
Nepovinné.Jiný bod, spolupracuje s prvním Point argument označují oblasti textu.IsVisibleUrčuje, zda je zobrazen tento rozsah textu.PointOrCountMůžete také nastavit počet znaků, které následují Point označující rozsah textu.
Pokud hodnota není zadána do PointOrCount argument, IsVisible kontroluje viditelnost znaku vpravo od Point, protože PointOrCount má výchozí hodnotu 1.
Vrácená hodnota
Typ: System.Boolean
true Pokud je bod viditelné; jinak false.
Implementuje
TextPane.IsVisible(TextPoint, Object)
Poznámky
Pokud je hodnota PointOrCount, pak IsVisible vrátí true Při výběru celý rozsah textu je viditelný.
Příklady
Tento příklad otevře textový dokument zobrazí text a potom použije IsVisible metody TextPane2 k určení, zda je zobrazen text v podokně textu. Další informace o tom, jak spustit jako v tomto příkladu najdete How to: Compile and Run the Automation Object Model Code Examples.
Imports EnvDTE
Imports EnvDTE80
Public Sub OnConnection(ByVal application As Object, _
ByVal connectMode As ext_ConnectMode, ByVal addInInst As Object, _
ByRef custom As Array) Implements IDTExtensibility2.OnConnection
_applicationObject = CType(application, DTE2)
_addInInstance = CType(addInInst, AddIn)
TextPane2IsVisibleExample(_applicationObject)
End Sub
Sub TextPane2IsVisibleExample(ByVal dte As DTE2)
Dim objTW As TextWindow
Dim objPane As TextPane2
Dim objTextDoc As TextDocument
Dim objTextPt As TextPoint
Dim objEP As EditPoint
' Create a new text document.
_applicationObject.ItemOperations.NewFile("General\Text File")
' Get a handle to the new document and create EditPoint,
' TextPoint, and TextPane objects.
objTextDoc = CType(_applicationObject.ActiveDocument. _
Object("TextDocument"), TextDocument)
objEP = objTextDoc.StartPoint.CreateEditPoint
objTextPt = objTextDoc.StartPoint
' Plug in some text.
objEP.Insert("A test sentence.")
objTW = CType(dte.ActiveWindow.Object, TextWindow)
objPane = CType(objTW.ActivePane, TextPane2)
' Check the first ten characters for visibility.
If objPane.IsVisible(objTextPt, 10) = True Then
MsgBox("Text is visible")
Else
MsgBox("Text is not visible.")
End If
End Sub
using EnvDTE;
using EnvDTE80;
using System.Windows.Forms;
public void OnConnection(object application,
ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
_applicationObject = (DTE2)application;
_addInInstance = (AddIn)addInInst;
TextPane2IsVisibleExample(_applicationObject);
}
public void TextPane2IsVisibleExample(DTE2 dte)
{
TextWindow objTW;
TextPane2 objPane;
TextDocument objTextDoc;
TextPoint objTextPt;
EditPoint2 objEP;
// Create a new text document.
_applicationObject.ItemOperations.NewFile
(@"General\Text File", "test.txt", Constants.vsViewKindTextView);
// Get a handle to the text document and create EditPoint2,
// TextPoint, and TextPane2 objects.
objTextDoc =(TextDocument)_applicationObject.ActiveDocument.Object
("TextDocument");
objEP = (EditPoint2)objTextDoc.StartPoint.CreateEditPoint();
objTextPt = objTextDoc.StartPoint;
// Plug in some text.
objEP.Insert("A test sentence.");
objTW = (TextWindow)_applicationObject.ActiveWindow.Object;
objPane = (TextPane2)objTW.ActivePane;
// Check the first ten characters for visibility.
if (objPane.IsVisible(objTextPt, 10))
MessageBox.Show("Text is visible");
else
MessageBox.Show("Text is not visible.");
}
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.