/** Encodes the query parameter using UTF-8 and adds it to this URL's query string. */ public Builder addQueryParameter(String name, String value) { if (name == null) throw new NullPointerException("name == null"); if (encodedQueryNamesAndValues == null) encodedQueryNamesAndValues = ...
(ByValSh _AsObject,ByValTargetAsExcel.Range, _ByRefCancelAsBoolean)HandlesApplication.SheetBeforeRightClick selectedCells = TargetEndSubPrivateSubwriteToText_Click(ByValCtrlAsOffice.CommandBarButton, _ByRefCancelDefaultAsBoolean)HandleswriteToText.ClickTryDimcurrentDateTimeAsSystem.DateTime = _ System....
The Convert.ToInt32 method uses Parse internally. The Parse method returns the converted number; the TryParse method returns a boolean value that indicates whether the conversion succeeded, and returns the converted number in an out parameter. If the string isn't in a valid format, Parse throws...
Private Property Locked() As Boolean Get Return lockedValue End Get Set(ByVal value As Boolean) lockedValue = value End Set End Property ' The PreFilterProperties method is where you can add or remove ' properties from the component being designed. ' ' In this implementation, the Visible pr...
There is an overload of this method which takes an additional boolean parameter -- if this is true and the configuration file is not valid, errors will be logged to stderr and the process continue. It is normally not recommended to set this parameter to true.If multiple configuration files...
b3.setEnabled(false);//Listen for actions on buttons 1 and 3.b1.addActionListener(this); b3.addActionListener(this); b1.setToolTipText("Click this button to disable " + "the middle button."); b2.setToolTipText("This middle button does nothing " ...
(boolean)method globally sets how invisible components are handled. A value of true, the default, indicates invisible components are treated as if they are not there. On the other hand, a value of false provides space for invisible components, treating them as though they were visible. Theset...
at Microsoft.SharePoint.SPGlobal.CreateSPRequestAndSetIdentity(SPSite site, String name, Boolean bNotGlobalAdminCode, String strUrl, Boolean bNotAddToContext, Byte[] UserToken, SPAppPrincipalToken appPrincipalToken, String userName, Boolean bIgnoreTokenTimeout, Boolean bAsAnonymous) at Microsoft....
factory.setFilter(newMethodFilter() {publicfinalbooleanisHandled(finalMethod m){// ignore finalize()return!m.getName().equals("finalize"); } });finalMethodHandlerhandler=createDefaultMethodHandler();try{return(T) factory.create(newClass<?>[0],newObject[0], handler); ...
Add a comment 58 You have two choices: db.users.find({"name": /string/}) or db.users.find({"name": {"$regex": "string", "$options": "i"}}) For the second one, you have more options, like "i" in options to find using case insensitive. And about the "string", you...